摘要: 顺序查找 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define MAX 100 6 7 struct element 8 { 9 int key; 10 }; 11 12 typedef struct e 阅读全文
posted @ 2021-01-03 18:01 互联星空 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 生命游戏 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <conio.h> 5 6 #define ROWLEN 10 7 #define COLLEN 10 8 #define DEAD 10 9 阅读全文
posted @ 2021-01-03 15:06 互联星空 阅读(617) 评论(0) 推荐(0) 编辑