
数据结构(原创)
文章平均质量分 74
freshare
现任江苏省环境信息系统工程技术研究中心主任,拥有丰富的项目管理经验,并兼顾团队建设及市场开拓,具有较高的进度控制、资源协调、成本管理和技术管理水平。专业领域方面对于环境监测、电子政务等都有着较深入的研究和实际项目经验,多次担任大型项目的负责人。
展开
-
[数据结构]第一次作业:将两个有序线形表合并成一个有序表
将两个有序线形表合并成一个有序表,要求分别按顺序存储结构和链式存储结构编程。 head_f.H文件: #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 #define TRUE 1 #d原创 2006-01-22 19:52:00 · 7448 阅读 · 0 评论 -
[数据结构]第五次作业:huffman编码及其译码(二)
/* ============== Program Description ============= *//* Freshares 5th of dswork *//* ================================================== */#include"stdio.h"#include"stri原创 2006-01-22 20:07:00 · 2661 阅读 · 0 评论 -
[数据结构]第五次作业:huffman编码及其译码(一)
/* ============== Program Description ============= *//* Freshares 5th of dswork *//* ================================================== */#include"stdio.h"#include"stri原创 2006-01-22 20:06:00 · 3781 阅读 · 0 评论 -
[数据结构]第四次作业:二叉数的各种算法
/* ============== Program Description ============= */ /* Freshare’s 4th of dswork */ /* ================================================== */ #include "stdlib.h" #incl原创 2006-01-22 20:21:00 · 2416 阅读 · 7 评论 -
[数据结构]第八次作业:快速排序
/* ============== Program Description ============= *//* Freshares 8th of dswork *//* ================================================== *//* 没有优化程序,只是实现了功能 (05年6月13日 最后一个原创 2006-01-22 20:11:00 · 1597 阅读 · 0 评论 -
[数据结构]课程设计:链表的维护与文件形式的保存
/* ========= 清翔兔 版权声明 ========= *//* 欲拷贝此源程序,请注明出处,谢谢. *//* =====================================*/#include #include #include #include #define LEN sizeof(GOODS)#define FILENAME_LEN 10#defi原创 2006-01-22 20:18:00 · 2804 阅读 · 0 评论 -
[数据结构]第七次作业:二叉排序树
/* ============== Program Description ============= *//* Freshares 7th of dswork *//* ================================================== */#include "stdlib.h"#include "s原创 2006-01-22 20:10:00 · 1946 阅读 · 0 评论 -
[数据结构]第六次作业:图的建立、遍历、最小生成树、最短路径
/* 程序区分无向图和右向图的代码可以继续完善 *//* ============== Program Description ============= *//* Freshares 6th of dswork *//* ================================================== */#inc原创 2006-01-22 20:09:00 · 6895 阅读 · 2 评论 -
[数据结构]第三次作业:字符串替换
/* ============== Program Description ============= *//* Freshares 3st of dswork *//* ================================================== */#include#include#define MAXSTR原创 2006-01-22 19:58:00 · 2979 阅读 · 0 评论 -
[数据结构]第二次作业:表达式的计算
/* 头文件 */ #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define TRUE 1 #define FALSE 0 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10原创 2006-01-22 19:56:00 · 1671 阅读 · 0 评论 -
[数据结构]KMP算法实现
#includestdio.h>#includestdlib.h>#define MAX 255void get_next(const char* T,int* next) // 算法4.7{ int i=0,j=-1; next[0]=-1; while (istrlen(T)) { if(j==-1 || T[i]== T[j]) {原创 2006-11-15 12:59:00 · 2577 阅读 · 0 评论