习题
楚渐灵
没有比人更高的山,没有比脚更长的路。
展开
-
链表的一波刷题
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2){ if(l1 == NULL) return l2; if(l2 == NULL) return l1; ...原创 2019-12-11 18:36:17 · 133 阅读 · 0 评论 -
五子棋
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include<time.h> //五子棋 int end; // 用于跳出主函数里边的循环,结束游戏 char chess[5][5]; // 棋盘 //初始化棋盘 void init() { for (...原创 2019-10-19 23:43:28 · 293 阅读 · 0 评论 -
C 语言通讯录(结构体)
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<malloc.h> #include<string.h> #define NameMax 100 #define TeleMax 12 #define AddressMax 200 #defin...原创 2019-11-20 17:49:38 · 453 阅读 · 0 评论