数据结构
守护生命的绿荷
这个作者很懒,什么都没留下…
展开
-
数据结构_折半查找
#include #include #include using namespace std; #include typedef int ElemType; typedef struct Node { int id; ElemType data; }A; A a[100]; bool cmp(A a,A b) { return a.data<b.data; }原创 2015-04-26 15:12:47 · 494 阅读 · 0 评论 -
数据结构_快速排序算法
#include //#include using namespace std; /*方法一: int Partion(int a[],int low,int high) { int pivotkey=a[low]; while(low<high) { while(low=pivotkey) { --high;原创 2015-04-25 18:59:04 · 366 阅读 · 0 评论 -
数据结构_线性表
#include #include #include using namespace std; #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 typedef int ElemType; typedef struct { ElemType *elem; //线性表的基地址 int length; //当前长度原创 2015-04-25 21:11:05 · 286 阅读 · 0 评论 -
数据结构_单链表
#include #include #include #include using namespace std; typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; }LNode,*LinkList; int GetElem_L(LinkList L,int i,Ele原创 2015-04-28 09:03:36 · 308 阅读 · 0 评论