相信自己,只有不想做的,没有做不到的。
发布时间:2013-10-27 21:54:56
#include <stdio.h>#include <stdlib.h>#define N 6//构建一个二叉树的结构体,数据,左孩子,右孩子typedef struct btree{int data;struct btree *lchild;struct btree *rchild;}BTREE;//创建一个二叉树的空节点,没有左右孩子BTREE *space_node(int data){BTREE *tree;tree = (BTREE *)malloc(sizeof(B.........【阅读全文】
发布时间:2013-10-27 21:33:38
#include <stdio.h>#include <stdlib.h>/**************************队列***********************/typedef struct {struct node *front;struct node *rear;}LinkQueue;LinkQueue *create_empty_queue(){struct node *head;LinkQueue *q;head = (struct node *)malloc(sizeof(struct node));hea.........【阅读全文】
发布时间: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;.........【阅读全文】