摘要: https://github.com/wusaifei/garbage_classify参考, 环境配置时候要用到anaconda,参考: https://blog.csdn.net/zbj18314469395/article/details/102932833 阅读全文
posted @ 2021-02-24 12:11 ggexs 阅读(317) 评论(0) 推荐(0)
摘要: 在window命令行下输入pip3 show torch,得到本地安装地址,在pycharm中的file->setting->projuct:->python interpreter点击小齿轮add -> system interpreter,由于查找的python版本不对导致查找不到对应位置的包 阅读全文
posted @ 2021-02-20 12:51 ggexs 阅读(1107) 评论(0) 推荐(0)
摘要: 1 /*请在此处编写代码,完成哈夫曼编码,并能输出每个叶子结点的编码*/ 2 /********** Begin *********/ 3 4 /*请在此处编写代码,完成哈夫曼编码,并能输出每个叶子结点的编码*/ 5 /********** Begin *********/ 6 #include < 阅读全文
posted @ 2020-12-24 19:40 ggexs 阅读(241) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <strings.h> 4 #define MAX 100 5 6 char * p; 7 typedef struct BTree{ 8 char * str; 9 struct BTree 阅读全文
posted @ 2020-12-24 19:30 ggexs 阅读(382) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef int DataType; 5 //顺序队列:类型和界面函数声明 6 struct SeqQueue 7 {// 顺序队列类型定义 8 int MAXNUM; // 队列中最大元素个数 9 阅读全文
posted @ 2020-12-24 19:29 ggexs 阅读(216) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include<stdbool.h> 4 /*此处是顺序线性表数据结构定义*/ 5 typedef int DataType; 6 struct seqList 7 {//有3个数据成员 8 int MAXN 阅读全文
posted @ 2020-12-23 21:19 ggexs 阅读(608) 评论(0) 推荐(0)
摘要: 第1关:顺序表基本操作及应用 1 #include <stdlib.h> 2 #include <stdio.h> 3 4 5 typedef int DataType; 6 struct SeqList{ 7 DataType *elem; 8 int Max; //表示线性表最大长度 9 int 阅读全文
posted @ 2020-12-01 18:10 ggexs 阅读(314) 评论(0) 推荐(0)
摘要: 1 #include <iostream> 2 #include <stdio.h> 3 #include <time.h> 4 #include "head.h" 5 using namespace std; 6 //realize headSort 7 const int maxn=1000; 阅读全文
posted @ 2020-11-28 11:11 ggexs 阅读(229) 评论(0) 推荐(0)
摘要: 参考链接:https://www.cnblogs.com/blogxjc/p/11287961.html,https://www.cnblogs.com/Roni-i/p/8586332.html,https://www.cnblogs.com/lanhaicode/p/10776166.html 阅读全文
posted @ 2020-11-16 09:00 ggexs 阅读(1421) 评论(0) 推荐(0)
摘要: 输出格式:排名 科目代号(优先按照排 #include <iostream> #include <algorithm> #include <vector> using namespace std; const int INF = 0x3fffffff; int n,f; struct student 阅读全文
posted @ 2020-11-15 15:25 ggexs 阅读(153) 评论(0) 推荐(0)