ShawMaker
ShawMaker
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ShawMaker的博客
全部文章
(共3篇)
题解 |用哈希表记录字符对应出现的位置(用vector保存)
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <map> #include <vector> using namespace std; map<char, vector<int&...
2024-03-10
1
173
题解 | #字符串连接#朴实无华的o(n^2)
#include <stdio.h> using namespace std; int main() { char a[1000] = { 0 }; while (fgets(a, sizeof(a), stdin)) { for (int i = 0;...
2024-03-06
0
167
题解 | #二叉排序树#
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> using namespace std; typedef struct node { int num; struct ...
2024-03-06
0
154