03-树--浙大数据结构-2019秋 摘要:``` 03-树1 树的同构 (25 分) ``` ![](/image_editor_upload/20191109082851_54960.png) ![](/image_editor_u…… 文章列表 2019年11月09日 0 点赞 0 评论 520 浏览 评分:9.9
02-线性结构--浙大数据结构-2019秋 摘要:``` 02-线性结构1 两个有序链表序列的合并 (15 分) ``` ![](/image_editor_upload/20191109110802_68699.png) ![](/imag…… 文章列表 2019年11月09日 0 点赞 0 评论 536 浏览 评分:9.9
带分数(错%25) 摘要:```cpp #include #include #include using namespace std; int a[9],one,two,q,w,e,m; int main(){ …… 文章列表 2019年11月08日 0 点赞 0 评论 710 浏览 评分:0.0
C++结课设计-大整数类设计 摘要: ![](/image_editor_upload/20191107114430_37615.png) 效果图: ![](/image_editor_upload/20191107114…… 文章列表 2019年11月07日 0 点赞 0 评论 372 浏览 评分:9.9
日常练习整理 摘要:(2010)数组 a[N],存放了 1 至 N-1 个数,其中某个数重复一次。写一个函数,找出被重复的数字。函数首部定义如下:int test1 (int a[], int N)( …… 文章列表 2019年11月05日 0 点赞 0 评论 267 浏览 评分:8.0
不同单词个数(通过73%) 摘要:```cpp #include #include #include #include using namespace std; char a[100000]; int main(){ …… 文章列表 2019年11月03日 0 点赞 0 评论 316 浏览 评分:0.0
二维字符串数组 排序 摘要: #include #include #define M 4 #define N 20 void Sort(char (*a)[N],int n) …… 文章列表 2019年11月02日 0 点赞 0 评论 463 浏览 评分:0.0
写字舵机,用两圆交点求出,并最终求得舵机所需转过的角度 摘要:main.c ```c //pip install matplotlib #include #include #include "angle.h" //最终结果求出舵机所需转过的角度 …… 文章列表 2019年11月01日 0 点赞 0 评论 370 浏览 评分:0.0
搜索实现蓝顿蚂蚁 摘要:# **核心函数的实现** ```c int a[102][102]; void move(int *x, int *y, char *s, int *w) { if (*w == 1)…… 文章列表 2019年11月01日 0 点赞 0 评论 504 浏览 评分:9.9
图的邻接链表的建立以及简单操作(一) 摘要:### 图的邻接链表的建立以及简单操作(一) 图一般有两种,有向图和无向图,对于它的编码方式也各有两种,邻接矩阵和邻接链表,顾名思义,邻接矩阵是顺序结构,而邻接链表就是链式结构了。 -----…… 文章列表 2019年10月28日 0 点赞 0 评论 372 浏览 评分:9.9