会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
四字又名
博客园
首页
新随笔
联系
订阅
管理
2020年6月
c++-字符串中的单词统计与单词大小排序
摘要: 1 #include <iostream> 2 #include <climits> 3 #include <string> 4 #include <cstring> 5 #include <vector> 6 #include <cmath> 7 using namespace std; 8 in
阅读全文
posted @ 2020-06-07 19:46 四字又名
阅读(788)
评论(0)
推荐(0)
2020年5月
数据结构-C语言数显-简单的链队
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct Queue{ 7 ElemType item;
阅读全文
posted @ 2020-05-23 18:31 四字又名
阅读(178)
评论(0)
推荐(0)
数据结构-C语言实现-顺序存储结构的队列
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct Queue{ 7 ElemType *item
阅读全文
posted @ 2020-05-22 20:14 四字又名
阅读(244)
评论(0)
推荐(0)
数据结构-C语言实现-链栈
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct item{ 7 ElemType items;
阅读全文
posted @ 2020-05-22 11:34 四字又名
阅读(209)
评论(0)
推荐(0)
数据结构-C语言实现-动态顺序存储栈
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 typedef int ElemType; 6 typedef struct stack{ 7 ElemType *item
阅读全文
posted @ 2020-05-22 11:27 四字又名
阅读(240)
评论(0)
推荐(0)
数据结构-C语言实现-双向循环链表
摘要: 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 #include<ctype.h> 5 #define NAME 20 6 #define SEX 6 7 typedef struct item{ 8 char *nam
阅读全文
posted @ 2020-05-21 17:45 四字又名
阅读(245)
评论(0)
推荐(0)
数据结构-C语言实现-单链表(尾插法)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 #define NAME 20//分配空间大小 6 #define SEX 6//分配空间大小 7 typedef stru
阅读全文
posted @ 2020-05-21 09:34 四字又名
阅读(705)
评论(0)
推荐(0)
数据结构-C语言实现-单链表(头插法)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <string.h> 5 #define NAME 20 6 #define SEX 6 7 typedef struct LinkList{ 8 c
阅读全文
posted @ 2020-05-20 14:02 四字又名
阅读(527)
评论(0)
推荐(0)
数据结构-C语言实现-动态顺序表
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctype.h> 4 #include <stdbool.h> 5 #define MAXSIZE 7 6 typedef int ElemType; 7 typedef struct Or
阅读全文
posted @ 2020-05-19 13:01 四字又名
阅读(197)
评论(0)
推荐(0)
C语言-数据结构-简单链表的实现(附详细注释)
摘要: 1 #include<stdio.h> 2 #include<stdlib.h>//malloc 3 #include<stdbool.h> 4 #include<string.h> 5 #include<ctype.h> 6 #define SIZE 12 //姓名字符串大小为12个字符,包含空字
阅读全文
posted @ 2020-05-13 14:02 四字又名
阅读(455)
评论(0)
推荐(0)
下一页
公告