
hiho
arcobaleno1996
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
#1433 : Boarding Passes
#include <iostream> #include <cstring> #include <map> using namespace std; int main() { int n; cin >> n; map<string, int> degree; while(n>0){ ...原创 2018-08-04 21:37:21 · 245 阅读 · 0 评论 -
Sorting Photo Files
#include <iostream> #include <string> #include <stdlib.h> #include <algorithm> using namespace std; bool compare(string str1, string str2){ int i = 0; for(; i < s...原创 2018-08-08 16:14:03 · 182 阅读 · 0 评论