分类目录归档:C

单向链表的增删查改练习

#include <stdio.h> #include <st … 继续阅读

发表在 C | 留下评论

C和C++动态内存的使用

//C #include <stdio.h> #include &l … 继续阅读

发表在 C, C++ | 留下评论

堆栈小测试

#include <stdio.h> #include <st … 继续阅读

发表在 C | 留下评论

动态链表(头插法和尾插法)

#include <stdio.h> #include <st … 继续阅读

发表在 C | 留下评论

静态链表练习

#include <stdio.h> typedef struct … 继续阅读

发表在 C | 留下评论

插入排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论