相信自己,只有不想做的,没有做不到的。
发布时间:2013-10-27 21:31:03
#include <stdio.h>#include <stdlib.h>/****************************栈*************************///栈头的类型typedef struct {//栈顶元素的位置struct node *top;//栈中元素的个数int n;}LinkStack;LinkStack *create_empty_stack(){LinkStack *s;s = (LinkStack *)malloc(sizeof(LinkStack.........【阅读全文】
发布时间:2013-10-27 21:21:21
#include <stdio.h>#include <stdlib.h>#define MAX 10typedef int DATATYPE;//栈的结构体typedef struct{//存放栈中元素DATATYPE buf[MAX];//记录栈顶的位置int top;}SeqStack;//创建一个空栈SeqStack *create_empty_stack(){SeqStack *s;s = (SeqStack *)malloc(sizeof(SeqStack));s->top = -1;.........【阅读全文】
发布时间:2013-10-27 21:07:36
#include #include //封装链表的数据类型typedef int DATATYPE;//创建链表的结构体typedef struct node{DATATYPE data;struct node *next;}LinkList;//创建一个只有表头空链表LinkList *create_empty_linklist(){struct node *head;head = (struct node *)malloc(sizeof(struct node.........【阅读全文】