摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)
摘要: 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)