月归档:2020年03月

单向链表的增删查改练习

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

发表在 C | 留下评论

对象指针练习

#include <iostream> using namespac … 继续阅读

发表在 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 | 留下评论