09 2020 档案

摘要:#include <iostream>#include <stdlib.h>using namespace std;struct node{ int data; struct node *link;};typedef struct node *plist;plist creat_list(int m 阅读全文
posted @ 2020-09-19 16:58 嘻嘻嘻ziixi 阅读(126) 评论(0) 推荐(0)
摘要:找到学院大佬要到的资源 pycharm-professional-2018.3.1 https://pan.baidu.com/s/1oj7RDiaITuXSM65Hty7GFA 提取码:60gl 用补丁获取无限期的使用。我还需要补丁 https://pan.baidu.com/s/1wcl94Zz 阅读全文
posted @ 2020-09-05 23:01 嘻嘻嘻ziixi 阅读(483) 评论(0) 推荐(0)
摘要:#include <iostream> using namespace std; const int N = 60; long long dp[N]; int n; void show(){ dp[0]=0;dp[1]=1; dp[2]=2;dp[3]=3;dp[4]=4; for(int i=5; 阅读全文
posted @ 2020-09-02 22:39 嘻嘻嘻ziixi 阅读(185) 评论(0) 推荐(0)