会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
5ran2yl
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
15
16
17
18
19
20
21
22
23
···
25
下一页
2022年6月15日
数据与结构-队列
摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 //循环队列 typedef int datatype; typedef struct { datatype data[MAXSIZE];//队列的数据存储区 int front,rear
阅读全文
posted @ 2022-06-15 23:12 回忆也交给时间
阅读(54)
评论(0)
推荐(0)
2022年6月14日
数据与结构-链栈
摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 //链栈 typedef int Elemtype; typedef struct Stacknode { Elemtype data; struct Stacknode *next; i
阅读全文
posted @ 2022-06-14 22:51 回忆也交给时间
阅读(33)
评论(0)
推荐(0)
数据与结构-顺序栈
摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int datetype; typedef struct { datetype date[MAXSIZE]; int top; }SeqStack; SeqStack *s
阅读全文
posted @ 2022-06-14 22:50 回忆也交给时间
阅读(40)
评论(0)
推荐(0)
2022年6月13日
数据与结构-顺序表
摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType elem[MAXSIZE]; int length; }SeqList;//定义一个顺序表
阅读全文
posted @ 2022-06-13 21:47 回忆也交给时间
阅读(43)
评论(0)
推荐(0)
数据与结构-单链表
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct node { ElemType date;//数据域 struct node *next;//指针域 }LNode,*LinkList; //用尾插法建
阅读全文
posted @ 2022-06-13 21:47 回忆也交给时间
阅读(46)
评论(0)
推荐(0)
2022年6月9日
C语言快速排序
摘要: #include<stdio.h> #define MAXSIZE 100 typedef int KeyType; typedef struct { KeyType key; }RecordType; typedef struct { RecordType r[MAXSIZE+1]; int le
阅读全文
posted @ 2022-06-09 23:17 回忆也交给时间
阅读(65)
评论(0)
推荐(0)
2022年6月8日
C语言-直接排序
摘要: #include<stdio.h> #define MAXSIZE 100 typedef int KeyType; typedef struct { KeyType key; }RecordType; typedef struct { RecordType r[MAXSIZE+1]; int le
阅读全文
posted @ 2022-06-08 18:46 回忆也交给时间
阅读(84)
评论(0)
推荐(0)
2022年6月7日
归并排序代码
摘要: //递归排序 #include<stdio.h> #include<stdlib.h> //归并排序-合并 void merge(int arr[],int tempArr[],int left,int mid,int right) { //标记左边未排序的元素 int l_pos=left; //
阅读全文
posted @ 2022-06-07 22:02 回忆也交给时间
阅读(116)
评论(0)
推荐(0)
2022年6月6日
归并排序(C语言)
摘要:
阅读全文
posted @ 2022-06-06 22:32 回忆也交给时间
阅读(28)
评论(0)
推荐(0)
2022年5月30日
javaWeb,web服务器
摘要: 一. 1.ASP 国内最早最流行的语言就是ASP:微软研发 在HTML中嵌套了VB脚本,ASP+COM(网页元素) 在ASP开发中,基本一个业务就有几千行代码,页面机器混乱 维护成本高 <h1> <h1> <h1> <% System.out.println("hello"); %> </h1> <
阅读全文
posted @ 2022-05-30 19:22 回忆也交给时间
阅读(56)
评论(0)
推荐(0)
上一页
1
···
15
16
17
18
19
20
21
22
23
···
25
下一页
公告