资源列表
quicksort
- 快速排序思想: 在待排序的n个记录中任取一个记录(通常取第一个记录),把所有小于该记录的记录移到其左边,把所有大于该记录的记录移到其右边,所选记录正好处在其应在的位置,且把原有序列划分成两个子序列。然后,对两个子序列分别重复上述过程,直到所有记录都排好序。把当前参加排序的记录按第一个记录的排序码分成前后两个部分的过程称为一趟快速排序。
MiGong
- 这是一个用递归实现迷宫求解的程序,该程序十分的简单,同时效率很高,是本人对自己比较满意的一个程序-This is a maze solving with a recursive procedure, the procedure is simple, while efficient, is quite satisfied with my own a program
123
- kmp模式匹配的实现 也就是字符串匹配的kp算法实现-kmp pattern matching is the realization of a string matching algorithm kp
yuesefu
- 数据结构 约瑟夫环 链式循环结构 按顺序输出将输入的数字依次输出-Data structure Josephus chain loop structure in order to enter the digital output of the output sequence
hash-table
- 哈希表查找,根据严蔚敏的书数据结构编写的哈希表算法的程序-hash table
6-282new
- 单链表A、B和C递增有序,在表A中删除既在B中出现又在C中出现的那些元素,注意控制算法的时间复杂度。-Singly linked lists A and B, and C increments ordered to delete both those elements in C B, in Table A, note that the control algorithm of time complexity.
DeQ-using-STL
- this is sample dqueue implementation using STL
array
- 一个数组由一个递减数列左移若干位形成,在该数组里查找一个数q-An array by a decreasing number of columns left some of the formation of a number q in the array to find
n_queen
- 在n×n格的棋盘上放置彼此不受攻击的n个皇后,按照国际象棋的规则,皇后可以攻击与之处在同一行或同一列或同一斜线上的棋子,求解可以放置的方法种数。-Placed on the n × n chessboard grid attack each other n-queens, in accordance with the rules of chess, the queen can attack in the same row or column, or diagonal pieces of the
erchashudeshixian
- 用C语言写的二叉树的实现,希望大家在学习中不断进步-Written using C language implementation of binary tree, I hope we continue to progress in learning
Portfolio
- n个自然数中选r个的组合,运用递归算法,能都输出,经尝试无误-natural numbers n r a combination of selected
kuohaopipei
- 这是严蔚敏数据结构书中的括号匹配的原始程序,可以实现。-This is the YAN Wei-min data structure of the original book, brace matching procedures can be achieved.