01 2020 档案
摘要:部分源码: #include<stdio.h> #include<stdlib.h> #include<string.h> #define M 8 typedef struct{ char data; int weight; int parent,lchlid,rchlid; }HTNode,*Hu
阅读全文
摘要:功能截图: 部分源码,不含main主函数,如需源码可在小程序下载: #include<stdio.h> #include<string.h> #define M 255 #define OK 1 #define ERROR 0 typedef char Str[M+1]; int StrAssign
阅读全文
摘要:功能截图: 部分源码,没有main主函数: #include <stdio.h> #include <stdlib.h> typedef struct List { int data; struct List *next; }list,*p_list; void creat_list(list **
阅读全文
摘要:功能截图: 部分源码: #include<stdio.h> // EOF(=^Z或F6),NULL #include<stdlib.h> // srand( ) ,rand( ),exit(n) #include<iostream> using namespace std; #define TRUE
阅读全文
摘要:代码功能截图: 部分源码: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType a[MAXSIZE]; int length; }SqList;
阅读全文
摘要:代码功能截图: 源代码: #include<stdio.h> // EOF(=^Z或F6),NULL #include<stdlib.h> // srand( ) ,rand( ),exit(n) #include<iostream> using namespace std; #define TRU
阅读全文
摘要:关注微信公众号:“指尖创意” 在菜单干货专区软件目录里领取链接: tampermonkey插件是一个免费的浏览器扩展和最为流行的用户脚本管理器,拥有适用于 Chrome, Microsoft Edge, Safari, Opera Next、Firefox等多个浏览器的不同版本,能够方便管理不同的脚
阅读全文