会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jesee's Blog
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
19
20
21
22
23
24
25
26
27
下一页
2021年2月24日
垃圾分类,图像识别记录
摘要: 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)
2021年2月20日
pycharm导入torch发红解决问题
摘要: 在window命令行下输入pip3 show torch,得到本地安装地址,在pycharm中的file->setting->projuct:->python interpreter点击小齿轮add -> system interpreter,由于查找的python版本不对导致查找不到对应位置的包
阅读全文
posted @ 2021-02-20 12:51 ggexs
阅读(1107)
评论(0)
推荐(0)
2020年12月24日
haffmanTree
摘要: 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)
2020年12月23日
顺序线性表——实验及提升训练
摘要: 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)
2020年12月1日
线性表单元测验用实训
摘要: 第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)
2020年11月28日
实现排序(二分、插入、堆排
摘要: 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)
2020年11月16日
栈——实验及提升训练
摘要: 参考链接: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)
2020年11月15日
PAT 甲级 1012 The Best Rank
摘要: 输出格式:排名 科目代号(优先按照排 #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)
上一页
1
···
19
20
21
22
23
24
25
26
27
下一页
公告