09 2020 档案

摘要:requests实战之搜索引擎爬取搜索内容 import requests#指定urlurl='https://www.sogou.... 阅读全文
posted @ 2020-09-30 17:41 _Hsiung 阅读(205) 评论(0) 推荐(0)
摘要:试设计一个算法,改造一个带表头结点的双向链表,所有结点的原有次序保持在各个结点的右链域rLink中,并利用左链域ILink把所有结点... 阅读全文
posted @ 2020-09-24 22:02 _Hsiung 阅读(125) 评论(0) 推荐(0)
摘要:#include#include#includeusing namespace std;struct node{ char dat... 阅读全文
posted @ 2020-09-21 20:30 _Hsiung 阅读(353) 评论(0) 推荐(0)
摘要:#includeusing namespace std;int a[1000000];int max3(int a, int b, ... 阅读全文
posted @ 2020-09-20 22:54 _Hsiung 阅读(62) 评论(0) 推荐(0)
摘要:#includeusing namespace std;#includestruct node{ int data; node* n... 阅读全文
posted @ 2020-09-19 21:35 _Hsiung 阅读(112) 评论(0) 推荐(0)
摘要:List Merge(List L1, List L2){ List L = (List)malloc(sizeof(str... 阅读全文
posted @ 2020-09-19 20:15 _Hsiung 阅读(88) 评论(0) 推荐(0)
摘要:总共 n个人 从s号开始,m个删去一个 #include#includeusing namespace std;int main()... 阅读全文
posted @ 2020-09-19 16:04 _Hsiung 阅读(87) 评论(0) 推荐(0)
摘要:这是stl deque的测试 仅实现部分功能 这是利用首位相接的数组 [循环队列]仿stl双端队列deque 将得到一样的结果 ... 阅读全文
posted @ 2020-09-16 14:39 _Hsiung 阅读(79) 评论(0) 推荐(0)
摘要:后面想了想 还是不要取1 0取 4和3比较好 这样些比书上感觉好理解些,而且可以找出所有路径 #include#includeu... 阅读全文
posted @ 2020-09-14 22:13 _Hsiung 阅读(67) 评论(0) 推荐(0)
摘要:#include#includeusing namespace std;templateclass Stack{ T* elemen... 阅读全文
posted @ 2020-09-14 16:56 _Hsiung 阅读(66) 评论(0) 推荐(0)
摘要:#includeusing namespace std;typedef struct node* list;struct node{... 阅读全文
posted @ 2020-09-13 14:24 _Hsiung 阅读(78) 评论(0) 推荐(0)