数据结构
文章平均质量分 78
Stone_Sky
这家伙很懒,什么都不想写~
展开
-
顺序线性表源码
顺序序线性表源码 (C++) #include "iostream.h" #include "malloc.h" #define LIST_INIT_SIZE 5 #define LISTINCREMENT 10 typedef struct{ int原创 2011-09-09 08:16:13 · 732 阅读 · 0 评论 -
链式线性表源码
链式线性表源码 (c++) #include "iostream.h" #include "malloc.h" typedef int ElemType; typedef int Status ; //--------链式线性表定义--------原创 2011-09-09 08:21:18 · 729 阅读 · 0 评论 -
顺序栈
顺序栈(C++) #include "iostream.h" #include "malloc.h" #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef int Status; typedef i原创 2011-09-09 08:30:43 · 643 阅读 · 0 评论 -
Windows操作系统中栈和堆的区别
关于内存中栈和堆的区别(非数据结构中的堆和栈,区别) 1、内存分配方面: 堆:一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式是类似于链表。可能用到的关键字如下:new、malloc、delete、free等等。 栈:由编译器(Compiler)自动分配释放,存放函数的参数值,局部变量的值等。其操作方式类转载 2012-03-27 10:15:59 · 981 阅读 · 0 评论 -
链式栈
链式栈 #include "iostream.h" #include "malloc.h" typedef int ElemType; typedef int Status ; //--------链式栈定义-------- typedef str原创 2011-09-09 08:33:29 · 788 阅读 · 0 评论 -
数据结构链队列算法
法一 #include #include #define OK 1.0 #define ERROR 0.0 #define TRUE 1.0 #define FALSE 0.0 typedef int ElemType; typedef float Status;转载 2011-09-09 08:41:45 · 888 阅读 · 0 评论 -
数制转换_顺序栈_头文件
将写好的头文件添加到工程的文件夹Head内,然后再编写源程序。 头文件"顺序栈.h": #include "iostream.h" #include "malloc.h" #define STACK_INIT_SIZE 100 #define STACKINCREM原创 2011-09-09 08:36:00 · 1313 阅读 · 0 评论