Loading

摘要: 思路 暴力解决 注意事项 数字转字符,字符转数字 code=10的时候,是'X' #include<bits/stdc++.h> using namespace std; /* run this program using the console pauser or add your own get 阅读全文
posted @ 2020-06-19 21:37 BigBender 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 万能函数头 #include<bits/stdc++.h> 命名空间的声明 using namespace std; 阅读全文
posted @ 2020-06-19 20:15 BigBender 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 思路 用数组下标作为数字,数组元素记录次数 注意事项 声明数组的时候,如果用 int index[10000]; 会出现不为0的随机数 #include<bits/stdc++.h> using namespace std; /* run this program using the console 阅读全文
posted @ 2020-06-19 20:12 BigBender 阅读(112) 评论(0) 推荐(0) 编辑