资源列表
[数据结构常用算法] Word-Ladder
说明:给定两个词(beginWord和endWord)和字典的单词列表,找到所有最短转换序列(s)beginWord endWord,这样: 一次只能改变一个字母;每个中间必须存在于词列表-Given two words (beginWord and endWord), and a dictionary s word list, find all shortest transformation sequence(s) beginWord t<胡延旭> 在 2024-11-07 上传 | 大小:1024 | 下载:0
[数据结构常用算法] Max-Points-on-a-Line
说明:给定的n个点在二维平面上,发现的最大数量点躺在同一直线。-Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.<胡延旭> 在 2024-11-07 上传 | 大小:1024 | 下载:0
[数据结构常用算法] Text-Justification
说明: 给定一组单词和长度,格式文本,每一行有L人物和完全(左和右)合理的。 你应该包你的话在一个贪婪的方法,也就是说,包尽可能多的单词可以在每一行。垫额外空间“必要时,每一行有L字符。 单词之间额外的空格应该尽可能均匀分布。如果空间的数量在一个单词之间不匀,左边的空槽将分配更多的空间比右边的插槽。 最后一行文本,应该向左对齐,没有单词之间插入额外的空间。-Given an array of words and a leng<胡延旭> 在 2024-11-07 上传 | 大小:1024 | 下载:0
[数据结构常用算法] 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.<胡延旭> 在 2024-11-07 上传 | 大小:1024 | 下载:0
[数据结构常用算法] Josephus-problem
说明:设编号为1-n的n(n>0)个人按顺时针方向围成一圈.首先第1个人从1开始顺时针报数,报m的人(m 为正整数).令其出列。然后再从他的下一个人开始,重新从1顺时针报数,报m的人,再令其出列。如此下去,直到圈中所有人出列为止。求出列编号序列。-Numbered 1-n set of n (n> 0) Personal clockwise circle. First Person 1 1 clockwise report th<王丹> 在 2024-11-07 上传 | 大小:1085440 | 下载:0
[数据结构常用算法] Binary-Tree-Traversal
说明: 本程序的功能是利用二叉树后序遍历来实现表达式的转换,同时可以使用栈来求解 后缀表达式的值。-The function of this program is to be implemented after preorder binary tree transform expression, and can use the stack to solve value postfix expression.<王丹> 在 2024-11-07 上传 | 大小:109568 | 下载:0
[数据结构常用算法] GraphBook.latest-r1991
说明:The Graph Book. Everything you need to knwo about graphs and how to effectively use them to solve problems.<mitsos> 在 2024-11-07 上传 | 大小:4623360 | 下载:0
[数据结构常用算法] Radix-Sort
说明:基数排序是一种非比较型整数排序算法,其原理是将整数按位数切割成不同的数字,然后按每个位数分别比较。- Radix sort is a kind of non comparative sorting algorithm, which is based on the number of integers into different numbers, and then according to the number of each<靳以2002> 在 2024-11-07 上传 | 大小:595968 | 下载:0
[数据结构常用算法] Bucket-Sort
说明:桶排序也叫箱排序。工作的原理是将数组分到有限数量的桶子里,每个桶子再个别排序(有可能再使用别的排序算法或是以递归方式继续使用桶排序进行排序)。- Bucket sort is also called sorting box. Work principle is that the array to a limited number of bucket, each bucket and individual ranking (ma<靳以2002> 在 2024-11-07 上传 | 大小:596992 | 下载:0
[数据结构常用算法] Bubble-Sort
说明:冒泡排序是一种极其简单的排序算法,也是我所学的第一个排序算法。它重复地走访过要排序的元素,一次比较相邻两个元素,如果他们的顺序错误就把他们调换过来,直到没有元素再需要交换,排序完成。-Bubble sort is a simple sorting algorithm, sorting algorithm is first learned by me. It repeatedly visited to sort the elements,<靳以2002> 在 2024-11-07 上传 | 大小:150528 | 下载:0