
笔试题
加油196
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
学无止境----编程练习
反转链表: struct ListNode { int val; struct ListNode *next; }; struct ListNode* ReverseList(struct ListNode* pHead ) { struct ListNode *tmp = pHead->next; struct ListNode *out = pHead; out->next = NULL; while (tmp) { pH原创 2021-09-10 01:18:16 · 157 阅读 · 0 评论 -
深信服笔试题
第一行输入整数n, 继续输入n行 (每行输入一个整数表示ID)取前10个不重复的ID为中奖用户输出结果: 3\n 1\n 2\n 5\n #include <map> #include <iostream> using namespace std; int main( ) { int n , size_m ,tmp ; map<int,int> m...原创 2018-06-21 21:59:00 · 3137 阅读 · 1 评论