摘要: 1 #define _CRT_SECURE_NO_WARNINGS//防止vs下scanf报错 2 #include <stdio.h> 3 #include <stdlib.h> 4 5 6 void hanoi(int number, char original, char assist, ch 阅读全文
posted @ 2021-12-12 23:44 吕辉 阅读(49) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <conio.h> 4 5 #define _CRT_SECURE_NO_WARNINGS//解决vs下直接用scanf报错 6 7 typedef struct operandstack// 阅读全文
posted @ 2021-12-12 22:36 吕辉 阅读(185) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct list 5 { 6 int ID; 7 int PASSWORD; 8 struct list *next; 9 }LIST; 10 11 /*************函数声 阅读全文
posted @ 2021-12-09 16:31 吕辉 阅读(41) 评论(0) 推荐(0)
摘要: 1 /**********************链表笔记**********************/ 2 #include <stdio.h> 3 #include <stdlib.h> 4 5 typedef struct node 6 { 7 int data; 8 struct node 阅读全文
posted @ 2021-12-08 20:03 吕辉 阅读(43) 评论(0) 推荐(0)