知交

2020年12月15日

倒序输出26个字母

摘要: #include <stdlib.h> #include<stdio.h> struct linklist{ char zimu; struct linklist *next; }; int main(){ struct linklist *p1,*p2;//定义两个结构体指针p1,p2,一直把p2 阅读全文

posted @ 2020-12-15 16:50 知交 阅读(699) 评论(0) 推荐(0) 编辑

一段充满血与泪的代码(链表的一些基本操作)

摘要: 别问为什么充满血与泪,问就是我菜 以下代码主要是通过学习B站UP主C3程序猿课程学来的。 #include <stdio.h> #include <stdlib.h> #include<string.h> #define N 100 void tillinsert(int id,char *name 阅读全文

posted @ 2020-12-15 16:09 知交 阅读(78) 评论(0) 推荐(0) 编辑

导航