文件名称:algorithms-master
-
所属分类:
- 标签属性:
- 上传时间:2014-07-11
-
文件大小:1.56mb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
1. 经典的算法实现 2. 服务器端 3. 正确,易于使用和改造, 一个头文件一个算法,并附带一个demo.
1. 一个算法用一个.h文件表示放到include下.2. 算法演示的demo程序放到src下.3. 程序正确通过后,请发起Pull Requests,代码被验证后入库,并在README中发布新算法实现。
已实现 ( Implemented ):
Array shuffle
Prime test(trial division)
Prime test(Miller-Rabin s method)
2D Array
Arbitary Integer
Linear congruential generator
Maximum subarray problem
Bit-Set
Queue
Stack
Binary Heap
Fibonacci Heap
Priority Queue (list based)
Bubble sort
Selection sort
Insertion sort
Radix sort
Quick sort
Merge sort
Heap sort
Double linked list
Skip list
Self-organized linked-list ops (move-to-front, move-ahead-one)
Largest common sequence
Binary search tree
Dynamic order statistics
Red-black tree
Interval tree
Prefix Tree(Trie)
Suffix Tree
B-Tree
Suffix Array等-(classical algorithms implementations) (based on linux/gcc) (correct! and ease of use, one .header file per algorithm) one .header file per algorithm. )( one demo per algorithm. )(Please Use Fork+Pull Requests !!! Correctness is the most important!)
1. 一个算法用一个.h文件表示放到include下.2. 算法演示的demo程序放到src下.3. 程序正确通过后,请发起Pull Requests,代码被验证后入库,并在README中发布新算法实现。
已实现 ( Implemented ):
Array shuffle
Prime test(trial division)
Prime test(Miller-Rabin s method)
2D Array
Arbitary Integer
Linear congruential generator
Maximum subarray problem
Bit-Set
Queue
Stack
Binary Heap
Fibonacci Heap
Priority Queue (list based)
Bubble sort
Selection sort
Insertion sort
Radix sort
Quick sort
Merge sort
Heap sort
Double linked list
Skip list
Self-organized linked-list ops (move-to-front, move-ahead-one)
Largest common sequence
Binary search tree
Dynamic order statistics
Red-black tree
Interval tree
Prefix Tree(Trie)
Suffix Tree
B-Tree
Suffix Array等-(classical algorithms implementations) (based on linux/gcc) (correct! and ease of use, one .header file per algorithm) one .header file per algorithm. )( one demo per algorithm. )(Please Use Fork+Pull Requests !!! Correctness is the most important!)
(系统自动生成,下载前可以参看下载内容)
下载文件列表
algorithms-master/
algorithms-master/.gitignore
algorithms-master/CMakeLists.txt
algorithms-master/LICENSE
algorithms-master/Makefile
algorithms-master/README.md
algorithms-master/darwin12.supp
algorithms-master/demo_graph.png
algorithms-master/include/
algorithms-master/include/2darray.h
algorithms-master/include/8queen.h
algorithms-master/include/LRU_cache.h
algorithms-master/include/astar.h
algorithms-master/include/base64.h
algorithms-master/include/bellman_ford.h
algorithms-master/include/binary_search_tree.h
algorithms-master/include/bitset.h
algorithms-master/include/bloom_filter.h
algorithms-master/include/btree.h
algorithms-master/include/bubble_sort.h
algorithms-master/include/dijkstra.h
algorithms-master/include/directed_graph.h
algorithms-master/include/disjoint-set.h
algorithms-master/include/dos_tree.h
algorithms-master/include/double_linked_list.h
algorithms-master/include/edmonds_karp.h
algorithms-master/include/fib-heap.h
algorithms-master/include/generic.h
algorithms-master/include/graph_defs.h
algorithms-master/include/graph_search.h
algorithms-master/include/hash_code.h
algorithms-master/include/hash_multi.h
algorithms-master/include/hash_string.h
algorithms-master/include/hash_table.h
algorithms-master/include/heap.h
algorithms-master/include/heap_sort.h
algorithms-master/include/huffman.h
algorithms-master/include/imath.h
algorithms-master/include/insertion_sort.h
algorithms-master/include/integer.h
algorithms-master/include/interval_tree.h
algorithms-master/include/k-means.h
algorithms-master/include/kmp.h
algorithms-master/include/kruskal_mst.h
algorithms-master/include/lcs.h
algorithms-master/include/max_subarray.h
algorithms-master/include/md5.h
algorithms-master/include/merge_sort.h
algorithms-master/include/palindrome.h
algorithms-master/include/perfect_hash.h
algorithms-master/include/prim_mst.h
algorithms-master/include/prime.h
algorithms-master/include/priority_queue.h
algorithms-master/include/queue.h
algorithms-master/include/quick_sort.h
algorithms-master/include/radix_sort.h
algorithms-master/include/random.h
algorithms-master/include/random_select.h
algorithms-master/include/rbtree.h
algorithms-master/include/rbtree_defs.h
algorithms-master/include/relabel_to_front.h
algorithms-master/include/scc.h
algorithms-master/include/selection_sort.h
algorithms-master/include/sha1.h
algorithms-master/include/shuffle.h
algorithms-master/include/simhash.h
algorithms-master/include/skiplist.h
algorithms-master/include/sol.h
algorithms-master/include/sort.h
algorithms-master/include/stack.h
algorithms-master/include/suffix_array.h
algorithms-master/include/suffix_tree.h
algorithms-master/include/trie.h
algorithms-master/include/undirected_graph.h
algorithms-master/include/universal_hash.h
algorithms-master/include/word_seg.h
algorithms-master/msvc/
algorithms-master/msvc/alg_vs.h
algorithms-master/msvc/stdbool.h
algorithms-master/src/
algorithms-master/src/8queue_demo.cpp
algorithms-master/src/LRU_cache_demo.cpp
algorithms-master/src/astar_demo.cpp
algorithms-master/src/base64_demo.cpp
algorithms-master/src/bellman_ford_demo.cpp
algorithms-master/src/binary_search_tree_demo.cpp
algorithms-master/src/bitset_demo.cpp
algorithms-master/src/bloom_filter_demo.cpp
algorithms-master/src/btree_demo.cpp
algorithms-master/src/bubble_sort_demo.cpp
algorithms-master/src/dict.txt
algorithms-master/src/dict.txt.sogou
algorithms-master/src/dijkstra_demo.cpp
algorithms-master/src/directed_graph_demo.cpp
algorithms-master/src/disjoint-set_demo.cpp
algorithms-master/src/dos_tree_demo.cpp
algorithms-master/src/double_linked_list_demo.cpp
algorithms-master/src/edmonds_karp_demo.cpp
algorithms-master/src/fib-heap_demo.cpp
algorithms-master/src/graph_demo.cpp
algorithms-master/src/graph_search_demo.cpp
algorithms-master/src/hash_multi_demo.cpp
algorithms-master/src/hash_string_demo.cpp
algorithms-master/src/hash_table_demo.cpp
algorithms-master/src/heap_demo.cpp
algorithms-master/src/heap_sort_demo.cpp
algorithms-master/src/huffman_demo.cpp
algorithms-master/src/imath_demo.cpp
algorithms-master/src/insertion_sort_demo.cpp
algorithms-master/src/integer_demo.cpp
algorithms-master/src/interval_tree_demo.cpp
algorithms-master/src/k-means_demo.cpp
algorithms-master/src/kmp_demo.cpp
algorithms-master/src/kruskal_mst_demo.cpp
algorithms-master/src/lcs_demo.cpp
algorithms-master/src/m_based_demo.cpp
algorithms-master/src/max_subarray_demo.cpp
algorithms-master/src/md5_demo.cpp
algorithms-master/src/merge_sort_demo.cpp
algorithms-master/src/palindrome_demo.cpp
algorithms-master/src/perfect_hash_demo.cpp
algorithms-master/src/prim_mst_demo.cpp
algorithms-master/src/prime_decompose.c
algorithms-master/src/prime_demo.cpp
algorithms-master/src/priority_queue_demo.cpp
algorithms-master/src/queue_demo.cpp
algorithms-master/src/quick_sort_demo.cpp
algorithms-master/src/radix_sort_demo.cpp
algorithms-master/src/random_demo.cpp
algorithms-master/src/random_select_demo.cpp
algorithms-master/src/rbtree_demo.cpp
algorithms-master/src/relabel_to_front_demo.cpp
algorithms-master/src/scc_demo.cpp
algorithms-master/src/selection_sort_demo.cpp
algori
algorithms-master/.gitignore
algorithms-master/CMakeLists.txt
algorithms-master/LICENSE
algorithms-master/Makefile
algorithms-master/README.md
algorithms-master/darwin12.supp
algorithms-master/demo_graph.png
algorithms-master/include/
algorithms-master/include/2darray.h
algorithms-master/include/8queen.h
algorithms-master/include/LRU_cache.h
algorithms-master/include/astar.h
algorithms-master/include/base64.h
algorithms-master/include/bellman_ford.h
algorithms-master/include/binary_search_tree.h
algorithms-master/include/bitset.h
algorithms-master/include/bloom_filter.h
algorithms-master/include/btree.h
algorithms-master/include/bubble_sort.h
algorithms-master/include/dijkstra.h
algorithms-master/include/directed_graph.h
algorithms-master/include/disjoint-set.h
algorithms-master/include/dos_tree.h
algorithms-master/include/double_linked_list.h
algorithms-master/include/edmonds_karp.h
algorithms-master/include/fib-heap.h
algorithms-master/include/generic.h
algorithms-master/include/graph_defs.h
algorithms-master/include/graph_search.h
algorithms-master/include/hash_code.h
algorithms-master/include/hash_multi.h
algorithms-master/include/hash_string.h
algorithms-master/include/hash_table.h
algorithms-master/include/heap.h
algorithms-master/include/heap_sort.h
algorithms-master/include/huffman.h
algorithms-master/include/imath.h
algorithms-master/include/insertion_sort.h
algorithms-master/include/integer.h
algorithms-master/include/interval_tree.h
algorithms-master/include/k-means.h
algorithms-master/include/kmp.h
algorithms-master/include/kruskal_mst.h
algorithms-master/include/lcs.h
algorithms-master/include/max_subarray.h
algorithms-master/include/md5.h
algorithms-master/include/merge_sort.h
algorithms-master/include/palindrome.h
algorithms-master/include/perfect_hash.h
algorithms-master/include/prim_mst.h
algorithms-master/include/prime.h
algorithms-master/include/priority_queue.h
algorithms-master/include/queue.h
algorithms-master/include/quick_sort.h
algorithms-master/include/radix_sort.h
algorithms-master/include/random.h
algorithms-master/include/random_select.h
algorithms-master/include/rbtree.h
algorithms-master/include/rbtree_defs.h
algorithms-master/include/relabel_to_front.h
algorithms-master/include/scc.h
algorithms-master/include/selection_sort.h
algorithms-master/include/sha1.h
algorithms-master/include/shuffle.h
algorithms-master/include/simhash.h
algorithms-master/include/skiplist.h
algorithms-master/include/sol.h
algorithms-master/include/sort.h
algorithms-master/include/stack.h
algorithms-master/include/suffix_array.h
algorithms-master/include/suffix_tree.h
algorithms-master/include/trie.h
algorithms-master/include/undirected_graph.h
algorithms-master/include/universal_hash.h
algorithms-master/include/word_seg.h
algorithms-master/msvc/
algorithms-master/msvc/alg_vs.h
algorithms-master/msvc/stdbool.h
algorithms-master/src/
algorithms-master/src/8queue_demo.cpp
algorithms-master/src/LRU_cache_demo.cpp
algorithms-master/src/astar_demo.cpp
algorithms-master/src/base64_demo.cpp
algorithms-master/src/bellman_ford_demo.cpp
algorithms-master/src/binary_search_tree_demo.cpp
algorithms-master/src/bitset_demo.cpp
algorithms-master/src/bloom_filter_demo.cpp
algorithms-master/src/btree_demo.cpp
algorithms-master/src/bubble_sort_demo.cpp
algorithms-master/src/dict.txt
algorithms-master/src/dict.txt.sogou
algorithms-master/src/dijkstra_demo.cpp
algorithms-master/src/directed_graph_demo.cpp
algorithms-master/src/disjoint-set_demo.cpp
algorithms-master/src/dos_tree_demo.cpp
algorithms-master/src/double_linked_list_demo.cpp
algorithms-master/src/edmonds_karp_demo.cpp
algorithms-master/src/fib-heap_demo.cpp
algorithms-master/src/graph_demo.cpp
algorithms-master/src/graph_search_demo.cpp
algorithms-master/src/hash_multi_demo.cpp
algorithms-master/src/hash_string_demo.cpp
algorithms-master/src/hash_table_demo.cpp
algorithms-master/src/heap_demo.cpp
algorithms-master/src/heap_sort_demo.cpp
algorithms-master/src/huffman_demo.cpp
algorithms-master/src/imath_demo.cpp
algorithms-master/src/insertion_sort_demo.cpp
algorithms-master/src/integer_demo.cpp
algorithms-master/src/interval_tree_demo.cpp
algorithms-master/src/k-means_demo.cpp
algorithms-master/src/kmp_demo.cpp
algorithms-master/src/kruskal_mst_demo.cpp
algorithms-master/src/lcs_demo.cpp
algorithms-master/src/m_based_demo.cpp
algorithms-master/src/max_subarray_demo.cpp
algorithms-master/src/md5_demo.cpp
algorithms-master/src/merge_sort_demo.cpp
algorithms-master/src/palindrome_demo.cpp
algorithms-master/src/perfect_hash_demo.cpp
algorithms-master/src/prim_mst_demo.cpp
algorithms-master/src/prime_decompose.c
algorithms-master/src/prime_demo.cpp
algorithms-master/src/priority_queue_demo.cpp
algorithms-master/src/queue_demo.cpp
algorithms-master/src/quick_sort_demo.cpp
algorithms-master/src/radix_sort_demo.cpp
algorithms-master/src/random_demo.cpp
algorithms-master/src/random_select_demo.cpp
algorithms-master/src/rbtree_demo.cpp
algorithms-master/src/relabel_to_front_demo.cpp
algorithms-master/src/scc_demo.cpp
algorithms-master/src/selection_sort_demo.cpp
algori
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.