自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 无向图,有向图,连通图,强连通图概念笔记

数据结构

2022-10-24 15:42:34 3304 1

原创 Map<int,int>的用法

例题:力扣1 题解class Solution {public: vector<int> twoSum(vector<int>& nums, int target) { map<int,int> a;//建立hash表存放数组元素 vector<int> b(2,-1);//存放结果 for(int i=0;i<nums.size();i++) a.inser

2022-03-11 12:30:59 2758

转载 已知后序与中序输出前序

#include <cstdio>using namespace std;int post[] = {3, 4, 2, 6, 5, 1};int in[] = {3, 2, 4, 1, 6, 5};void pre(int root, int start, int end) {//root是根在post中的值,start和end都是在in中的值 if(start > end) return ; int i = start; while(i < en.

2022-03-09 20:59:12 128

原创 1019 General Palindromic Number (20 分)

#include<iostream>#include<sstream>using namespace std;string translate(int num,int base){ string s=""; int t=1; while(num/base!=0){ if(t==1){ s=to_string(num%base)+s; num=num/base; ..

2022-03-03 21:58:01 430

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除