摘要: 栈代码演示 #include <stdio.h> #include <malloc.h> #include <stdlib.h> //节点结构体 typedef struct Node { int data; struct Node * pNext; }Node, *pNode; //栈结构体 ty 阅读全文
posted @ 2021-07-14 14:06 北极星! 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 内存四区 内存四区代码演示 数据结构中的栈和堆与计算机内存划分的栈区和堆区的区别 阅读全文
posted @ 2021-07-14 09:39 北极星! 阅读(40) 评论(0) 推荐(0) 编辑