资源列表
8huanghou
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight queens problem is an old and well-known problem is a typical example backtracking algorithm. The problem is that the nineteenth ce
111
- 数据结构中的c语言程序,分支结构的练习,能够提升初学者的能力。-Data structure in c language program, the branch structure of the exercises, to enhance the ability of beginners.
Text2
- 数据的排序,其功能是--将一数组里的成员排序。-Sort of data will be a member of the array in order.
programeoffuzzylustering
- 在对样本进行分析时,一般可对样本进行模糊聚类,然后再找出交遇区,利用交遇区的新样本进行分类,可建立线性分段分类器-fuzzy clustering
program
- 逆向建立了单链表,并用同样方向进行就地倒置-Reverse established single-strand libraries, and use the same direction for on-site inverted..
activitySelector
- 活动选择算法问题的C++具体实现代码。 输入:按时间排好序的开始数组S,完成时间数组F。 输出:表示一个最大相容活动组的向量。-Activity selection algorithm issues specific implementation C++ code. Input: sorted by the time the start of the array S, the completion time of an array of F. Output: that one of th
2
- 如图 A 中的项链,从第 9 和第 10 个或者第 24 和 第 25 个珠子中间截断,则我们可以收集到 8 个珠子。 图 B 中的项链有白色的珠子,当遇到白色的珠子时,它既可以作为蓝色的珠子看待,也可以作为红色的珠子看待,由收集珠子时的需求决定。包含有白色珠子的项链则会由 r、b 和 w 字符组成的字符串来表示。 请编写一个程序计算从某条项链中能够收集到多少个珠子。-Figure A, the necklace, from 9 and 10 or 24 and the mi
sort
- 堆排序算法。堆积排序(Heapsort)是指利用堆积树(堆)这种资料结构所设计的一种排序算法,可以利用数组的特点快速定位指定索引的元素。-heapsort is goog algrithm for sort some numbers.
shortest_length
- 计算二值网络的两两节点间的最短路径,并返回两两节点间的路程。-calculate the shortest length of undirected nework.
exchange-issues
- 贪心算法求解货币兑换问题。算法里的经典问题,用C实现的,开发环境是vs2010-Greedy algorithm currency exchange issues
hust20151
- 输入一串字符,并验证其是否为正确的电话号码。长度必须为11位第一位必须为1,第二位为3、5、6、8中得一个,其余位必须为0-9中的一个数-nter a string of characters, and verify that the correct phone number. Length must be 11, the first must be 1, the second was a bit of 3,5,6,8 in the rest position must be a number
Shortest-Palindrome
- 给定一个字符串,你可以将它转换成一个回文通过添加字符在它前面。找到并返回最短的回文可以发现通过执行这个转换。 例如: 鉴于“aacecaaa”,返回“aaacecaaa”。 鉴于“abcd”,返回“dcbabcd”。-Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest p