搜索资源列表
AN EXPERIMENTAL TABU SEARCH CODE FOR THE N-QUEENS PROBLEM
- * TSQUEEN.C : <n> number of queens * * <tabu_size> size of the tabu list * * <max_iter> maximum number of iterations * *
The-code
- 严蔚敏《数据结构与算法》的书上习题以及例题源代码!-The answers of <<Data structure and algorithms>>
capi-0.01.tar
- < 多任务下的数据结构与算法>>一书的配套源代码,含有链表、哈希表、红黑树、AVL树、复合二叉树、无碎片内存管理、垃圾内存管理、多任务遍历等源代码-" " Multi-tasking data structures and algorithms under the " " a book supporting the source code, containing lists, hash tables, red-black tree, AVL
datastructurecodeIIyanweimin
- 严蔚敏 数据结构 书中全部代码 本代码全由C语言实现-YANWEIMIN s book <data structure> code
ch1
- 严蔚敏《数据结构》第一章程序源码,用C实现。-Yan Wei-Min <data structure> the first chapter program source code, using C to achieve.
ch2
- 严蔚敏《数据结构》第二章程序源码,用C实现。-Yan Wei-Min <data structure> the sencond chapter program source code, using C to achieve.
ch3
- 严蔚敏《数据结构》第三章程序源码,用C实现。-Yan Wei-Min <data structure> the third chapter program source code, using C to achieve.
ch4
- 严蔚敏《数据结构》第四章程序源码,用C实现。-Yan Wei-Min <data structure> the forth chapter program source code, using C to achieve.
tongxunlu
- 制作一个简易的通讯录,包括基本操作和存储功能。 用〈〈数据结构〉〉中的双向链表作数据结构,结合C语言基本知识。编写一个通讯录管理系统。以把所学数据结构知识应用到实际软件开发中去。 设计内容:本系统应完成一下几方面的功能: 输入信息——enter() 显示信息———display( ) 查找以姓名作为关键字 ———search( ) [由一人完成] 删除信息———delete( ) 存盘———save ( ) 装入———load( ) 任务: 每条信息至包含 :姓名
IA-algorithm-source
- IA算法源程序 IA算法源程序,可读性很好,非常易于学习 < 隐藏 -IA IA algorithm source algorithm source code, readable very good, very easy to learn IA algorithm source code, readable very good, very easy to learn < < Hide
pai-xu
- 顺序表的结构没有给出,作为演示分治法这里从简顺序表取一整形数组数组大小由用户定义,数据随机生成。我们知道如果数组大小为 1 则可以直接给出结果,如果大小为 2则一次比较即可得出结果,于是我们找到求解该问题的子问题即: 数组大小 <= 2。到此我们就可以进行分治运算了,只要求解的问题数组长度比 2 大就继续分治,否则求解子问题的解并更新全局解以下是代码-e order of the table structure did not give a simple order form as a p
data-structure
- 严蔚敏《数据结构》源代码,包括C语言代码和C++代码,还不错-Yan Weiming<data structure>source code
file
- <数据结构——C语言描述>课件 蔡明志编著 内包含全部源码-< Data Structure- C Language Descr iption, " Tsai Ming-chih courseware contains all the source code compiled
Data-structure-CPP-part2
- 《数据结构》中伪代码的C++代码编译实现,本代码配合严蔚敏编写的《数据结构》,可使初学者通过练习,更快的掌握-C++ source code of <Data Structure> which may help beginner learn more efficiency
Data-structure-CPP-part1
- 数据结构中伪代码的C++代码实现。本代码配合于严蔚敏编写的《数据结构》,可使初学者通过练习,更容易尽快掌握数据结构-The C++ source code of <Data Structer> writed by Weimin Yan.
Data-structure-C-part2
- 《数据结构》中伪代码的C代码编译实现,本代码配合严蔚敏编写的《数据结构》,可使初学者通过练习,更快的掌握-source code of <Data Structure> which may help beginner learn more efficiency
Data-structure-C-part1
- 《数据结构》中伪代码的C语言代码编译实现,本代码配合严蔚敏编写的《数据结构》,可使初学者通过练习,更快的掌握。用户可尝试使用C和C++两种不同方法进行练习,效果更好-source code of <Data Structure> which may help beginner learn more efficiency
xml
- 将输入的xml代码格式化输出。比如<html></html> 输出 <html> </html>-The input xml code formatting output. For example <html> </ html> Output <html> </ html>
maze
- 完成迷宫程序的设计 从maze.txt文件读入迷宫。格式如下: 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为 障碍物。 实验要求 : 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置 打印“ ”(两个空格),注意每个位置都是两个字符。 打印示例: 2. 寻找走出迷宫的路径并输出 FindPath() 输出格式为
用链表求循环小数
- 对于任意的真分数 N/M ( 0 < N < M ),均可以求出对应的小数。如果采用链表表示各个小数,对于循环节采用循环链表表示,则所有分数均可以表示为如下链表形式。 输入: N M 输出: 转换后的小数(不超过 50 位) 要求: 仅编写将分数转换为小数的函数 change( int n, int m, NODE * head ) 。 预设代码: /* PRESET CODE BEGIN - NEVER TOUCH CODE BELOW */ #in