- 博客(4)
- 收藏
- 关注
原创 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关注的人