上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页
摘要: 1.#include <stdio.h>#include <malloc.h>#include "LinkList.h"typedef struct _tag_LinkList{ LinkListNode header; int length;} TLinkList;LinkList* LinkLi 阅读全文
posted @ 2016-12-07 12:37 王小波私人定制 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "SeqStack.h"/* run this program using the console pauser or add your own getch, system("pause") or inp 阅读全文
posted @ 2016-12-07 12:34 王小波私人定制 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: 一 工程1: 1.#include <stdio.h>#include <malloc.h>#include "CircleList.h"typedef struct _tag_CircleList{ CircleListNode header; CircleListNode* slider; in 阅读全文
posted @ 2016-12-06 20:22 王小波私人定制 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "DLinkList.h"/* run this program using the console pauser or add your own getch, system("pause") or in 阅读全文
posted @ 2016-12-06 20:06 王小波私人定制 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <malloc.h>#include "CircleList.h"typedef struct _tag_CircleList{ CircleListNode header; CircleListNode* slider; int lengt 阅读全文
posted @ 2016-12-06 19:46 王小波私人定制 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "StaticList.h"/* run this program using the console pauser or add your own getch, system("pause") or i 阅读全文
posted @ 2016-12-06 14:02 王小波私人定制 阅读(265) 评论(2) 推荐(1) 编辑
摘要: 1. #include <stdio.h>#include <stdlib.h>#include "LinkList.h"/* run this program using the console pauser or add your own getch, system("pause") or in 阅读全文
posted @ 2016-12-06 13:05 王小波私人定制 阅读(405) 评论(0) 推荐(1) 编辑
摘要: 1. #include <stdio.h>#include <malloc.h>#include "SeqList.h"typedef unsigned int TSeqListNode;typedef struct _tag_SeqList{ int capacity; int length; T 阅读全文
posted @ 2016-12-05 21:46 王小波私人定制 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1.对线性表的操作 #include <stdio.h>#include "2-1.h"List* List_Create(){ return NULL;}void List_Destroy(List* list){}void List_Clear(List* list){}int List_Len 阅读全文
posted @ 2016-12-05 21:45 王小波私人定制 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1. #include <stdio.h>/* 问题: 在一个由自然数1-1000中某些数字所组成的数组中,每个数字可能出现零次或者多次。 设计一个算法,找出出现次数最多的数字。*/void search(int a[], int len){ int sp[1000] = {0}; int i = 阅读全文
posted @ 2016-12-05 21:42 王小波私人定制 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页
DON'T FORGET TO HAVE FUN