青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆-167  評論-8  文章-0  trackbacks-0

從這個列表上,我們可以看到,他從去年7月份就在自己實現(xiàn)這些東西了,我把他實現(xiàn)的這些算法轉(zhuǎn)過來,

  • 另一方面我希望這個事可以影響到一些正在學(xué)習(xí)編程的人。看看別人是怎么學(xué)習(xí)編程的,希望對你有借鑒作用。
Name Link Date Added Language Description
Binomial Heap (link) 7‑24‑2010 C++ An implementation of a binomial heap data structure for use as a priority queue.
Bounded Priority Queue (link) 7‑24‑2010 C++ An implementation of a priority queue with a fixed upper limit to its size..
Matrix (link) 7‑24‑2010 C++ A collection of classes for manipulating matrices.
VList (link) 8‑16‑2010 Java An implementation of the List abstraction backed by a VList.
Function Wrapper (link) 8‑16‑2010 C++ A C++ wrapper class around unary functions.
String (link) 8‑17‑2010 C++ An implementation of a string abstraction that uses the small string optimization.

nstream (link) 8‑31‑2010 C++ An stream class that sends and receives data over a network.
Snake (link) 8‑31‑2010 C++ An implementation of the game Snake with a rudimentary AI.
Mergesort (link) 9‑14‑2010 C++ An implementation of the mergesort algorithm.
Next Permutation (link) 10‑6‑2010 C++ An implementation of the next_permutation STL algorithm.
Interval Heap (link) 10‑17‑2010 Java An implementation of a double-ended priority queue using an interval heap.
Linear-Time Selection (link) 10‑18‑2010 C++ A deterministic, linear-time selection algorithm using the median-of-medians algorithm.
Heapsort (link) 10‑18‑2010 C++ An implementation of the heapsort algorithm.
Union-Find (link) 10‑19‑2010 Java An implementation of a disjoint-set data structure using a disjoint set forest.
Radix Sort (link) 10‑19‑2010 C++ An implementation of the radix sort algorithm.
Rational (link) 10‑23‑2010 C++ A data structure representing a rational number.
DPLL (link) 10‑23‑2010 Haskell An implementation of the DPLL algorithm for solving CNF-SAT.
Smoothsort (link) 10‑27‑2010 C++ An implementation of the smoothsort algorithm, an adaptive heapsort variant.
Extendible Array (link) 10‑28‑2010 Java dynamic array class with O(1) worst-case runtime lookup and append.
In-Place Merge (link) 10‑29‑2010 C++ An implementation of a merge algorithm that runs in-place.
Random Shuffle (link) 10‑29‑2010 C++ An algorithm for generating a random permutation of a set of elements.
Random Sample (link) 10‑29‑2010 C++ An O(n) time, O(1) space algorithm for randomly choosing k elements out of a stream with uniform probability.
Natural Mergesort (link) 10‑30‑2010 C++ An implementation of natural mergesort, an adaptive variant of mergesort.
Interpolation Search (link) 10‑31‑2010 C++ An implementation of the interpolation search algorithm.
Introsort (link) 10‑31‑2010 C++ An implementation of the introsort algorithm, a fast hybrid of quicksortheapsort, andinsertion sort.
Hashed Array Tree (link) 11‑3‑2010 Java An implementation of a dynamic array backed by a hashed array tree.
Recurrence Solver (link) 11‑13‑2010 C++ A fast algorithm for generating terms of a sequence defined by a linear recurrence relation.
Fibonacci Heap (link) 11‑15‑2010 Java An implementation of a priority queue backed by a Fibonacci heap.
Dijkstra’s Algorithm (link) 11‑16‑2010 Java An implementation of Dijkstra’s algorithm for single-source shortest paths.
Prim’s Algorithm (link) 11‑17‑2010 Java An implementation of Prim’s algorithm for computing minimum spanning trees.
Kruskal’s Algorithm (link) 11‑17‑2010 Java An implementation of Kruskal’s algorithm for computing minimum spanning trees.
Majority Element (link) 11‑17‑2010 C++ A fast, linear-time algorithm for finding the majority element of a data set.
Haar Transform (link) 11‑17‑2010 C++ A set of functions to decompose a sequence of values into a sum of Haar wavelets.
Argmax (link) 11‑19‑2010 C++ A pair of functions to compute the arg min or max of a function on some range.
Derivative (link) 11‑19‑2010 C++ function object that approximates the derivative of a function.
Levenshtein Distance (link) 11‑19‑2010 C++ An algorithm for computing the Levenshtein distance between two sequences.
Skiplist (link) 11‑20‑2010 C++ An implementation of a skip list, a randomized data structure for maintaining a sorted collection.
van Emde Boas Tree (link) 11‑26‑2010 C++ An implementation of a sorted associative array backed by a van Emde Boas tree.
Cuckoo HashMap (link) 11‑27‑2010 Java An implementation of a hash table using cuckoo hashing.
Needleman-Wunsch Algorithm (link) 11‑28‑2010 C++ An implementation of the Needleman-Wunsch algorithm for optimal string alignment.
Treap (link) 11‑28‑2010 C++ An implementation of a sorted associative array backed by a treap.
Floyd-Warshall Algorithm (link) 12‑10‑2010 Java An implementation of the Floyd-Warshall algorithm for all-pairs shortest paths in a graph.
Power Iteration (link) 12‑10‑2010 C++ An implementation of the power iteration algorithm for finding dominant eigenvectors.
Edmonds’s Matching Algorithm (link) 12‑15‑2010 Java An implementation of Edmonds’s matching algorithm for finding maximum matchings in undirected graphs.
Kosaraju’s Algorithm (link) 12‑15‑2010 Java An implementation of Kosaraju’s algorithm algorithm for finding strongly connected components of a directed graph.
2-SAT (link) 12‑15‑2010 Java A linear-time algorithm for solving 2-SAT.
Bellman-Ford Algorithm (link) 12‑17‑2010 Java An implementation of the Bellman-Ford algorithm for single-source shortest paths.
Topological Sort (link) 12‑17‑2010 Java An algorithm for computing a topological sort of a directed acyclic graph.
Graham Scan (link) 12‑19‑2010 C++ An implementation of the Graham scan for finding convex hulls in 2D space.
Bipartite Testing (link) 12‑19‑2010 Java A linear-time algorithm for checking whether a directed graph is bipartite.
Johnson’s Algorithm (link) 12‑19‑2010 Java An implementation of Johnson’s algorithm for all-pairs shortest paths.
Strassen Algorithm (link) 12‑20‑2010 C++ An implementation of the Strassen algorithm for fast matrix multiplication.
Cartesian Tree Sort (link) 12‑21‑2010 C++ An implementation of Cartesian tree sort, an adaptive, out-of-place heapsort variant.
Ford-Fulkerson Algorithm (link) 12‑21‑2010 Java An implementation of the Ford-Fulkerson maximum-flow algorithm.
Scaling Ford-Fulkerson (link) 12‑22‑2010 Java An modification of the Ford-Fulkerson maximum-flow algorithm that uses scaling to achieve polynomial time..
Splay Tree (link) 12‑27‑2010 C++ An implementation of a sorted associative array backed by a splay tree.
Ternary Search Tree (link) 12‑28‑2010 C++ An implementation of a sorted set of strings backed by a ternary search tree.
Ring Buffer (link) 12‑30‑2010 Java An implementation of a FIFO queue using a ring buffer.
AVL Tree (link) 12‑30‑2010 C++ A sorted associative container backed by an AVL tree.
Rabin-Karp Algorithm (link) 1‑1‑2011 C++ An implementation of the Rabin-Karp algorithm for string matching.
RPN Evaluator (link) 1‑18‑2011 C++ / strain A library to tokenize and evaluate simple arithmetic expressions in reverse Polish notation.
Shunting-Yard Algorithm (link) 1‑18‑2011 C++ / strain An implementation of Dijkstra’s shunting-yard algorithm for converting infix expressions to reverse-Polish notation.
Skew Binomial Heap (link) 1‑20‑2011 C++ An implementation of a priority queue backed by a skew binomial heap.
2/3 Heap (link) 3‑1‑2011 C++ An implementation of a priority queue whose branching factor alternates at different levels to maximize performance.
Zeckendorf Logarithm (link) 3‑10‑2011 C++ An algorithm based on Zeckendorf representations that efficiently computes logarithms.
Factoradic Permutations (link) 3‑17‑2011 C++ A set of algorithms for generating permutations using the factoradic number system.
Binary Cyclic Subsets (link) 3‑20‑2011 C++ A set of algorithms for generating subsets in lexicographical order using binary numbers and cyclic shifts.
Fibonacci Iterator (link) 3‑22‑2011 C++ An STL-style iterator for iterating over the Fibonacci numbers.
Fibonacci Search (link) 3‑22‑2011 C++ An implementation of the Fibonacci search algorithm.
Euclid’s Algorithm (link) 4‑18‑2011 Haskell An implementation of Euclid’s algorithm and applications to continued fractions and the extended Euclidean algorithm.
Find Duplicate (link) 4‑18‑2011 Python An algorithm to find a repeated element in an array using Floyd’s cycle-finding algorithm.
Permutation Generator (link) 4‑19‑2011 Python generator for producing all permutations of a list of elements.
Matrix Find (link) 4‑19‑2011 Python A solution to the classic interview question of searching a sorted matrix for a particular value.
Binary GCD (link) 4‑23‑2011 Scheme An implementation of the binary GCD algorithm for computing greatest common divisors of nonnegative integers.
Knuth-Morris-Pratt Algorithm (link) 5‑3‑2011 Python An implementation of the Knuth-Morris-Pratt algorithm for fast string matching.
Kadane’s Algorithm (link) 5‑7‑2011 C++ An implementation of Kadane’s algorithm for solving the maximum-weight subarray problem.
Karatsuba’s Algorithm (link) 8‑15‑2011 Python An implementation of Karatsuba’s algorithm for fast integer multiplication.
Min-Stack (link) 8‑15‑2011 C++ An implementation of a LIFO stack that supports O(1) push, pop, and find-minimum.
Random Bag (link) 8‑15‑2011 Python A data structure that supports insertion and removal of a uniformly-random element.
Min-Queue (link) 8‑15‑2011 C++ An implementation of a FIFO queue that supports O(1) push, pop, and find-minimum.
Lights-Out Solver (link) 8‑29‑2011 C++ A solver for the game Lights Out using Gaussian elimination over GF(2).
Maximum Single-Sell Profit (link) 11‑9‑2011 Python Four algorithms for the maximum single-sell profit problem, each showing off a different algorithmic technique.
Generalized Kadane’s Algorithm (link) 11‑10‑2011 C++ A generalization of Kadane’s algorithm for solving the maximum subarray problem subject to a length restriction.
Longest Range (link) 11‑19‑2011 Java An algorithm for solving the longest contiguous range problem.
Egyptian Fractions (link) 11‑20‑2011 Python An implementation of the greedy algorithm for finding Egyptian fractions.
LL(1) Parser Generator (link) 11‑21‑2011 Java An LL(1) parser generator.
LR(0) Parser Generator (link) 11‑23‑2011 Java An LR(0) parser generator.
Word Ladders (link) 11‑27‑2011 JavaScript A program for finding word ladders between two words.

(全文完)


Keith Schwarz
http://www.keithschwarz.com/
http://www.keithschwarz.com/interesting/
posted on 2011-11-30 10:04 老馬驛站 閱讀(716) 評論(0)  編輯 收藏 引用 所屬分類: c++algorithm
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            中文欧美字幕免费| 久久精品夜色噜噜亚洲a∨ | 久久久久久亚洲综合影院红桃| 精品1区2区| 国产精品在线看| 国产精品久久久久9999吃药| 欧美韩日一区二区| 欧美激情综合在线| 欧美巨乳在线观看| 欧美日韩hd| 欧美偷拍另类| 国产精品久久看| 国产精品综合不卡av| 国产欧美日韩视频在线观看 | 欧美欧美全黄| 免费欧美在线视频| 欧美精品免费在线| 欧美日韩在线播放三区| 欧美日韩中文字幕精品| 国产精品久久久对白| 国产欧美一区二区三区在线看蜜臀| 国产欧美激情| 国内成+人亚洲| 亚洲黄色高清| 亚洲视频专区在线| 久久久精品999| 亚洲国产精品成人综合色在线婷婷| 欧美日韩第一页| 亚洲精品欧美精品| 欧美日韩中文另类| 欧美国产日韩xxxxx| 免费不卡视频| 亚洲高清不卡在线| 美女91精品| 亚洲黄色天堂| 亚洲精品视频一区二区三区| 欧美高清视频一区| 一区二区三区国产精品| 亚洲视频在线看| 91久久香蕉国产日韩欧美9色| 亚洲精品之草原avav久久| 午夜精品久久久久久久男人的天堂| 久久精品免费播放| 亚洲激情一区二区| 性色av一区二区三区在线观看 | 久久这里有精品视频| 亚洲高清成人| 亚洲欧美日韩区| 巨乳诱惑日韩免费av| 久久综合久久综合久久综合| 欧美三区在线视频| 欧美日韩卡一卡二| 激情伊人五月天久久综合| 亚洲性感激情| 亚洲高清久久久| 欧美一区二区视频在线观看2020| 欧美精品1区2区3区| 国产日韩欧美一区二区| 一本一道久久综合狠狠老精东影业| 久久久久久久高潮| 亚洲午夜性刺激影院| 久久久久中文| 国产一区二区三区不卡在线观看| 亚洲一区黄色| 99在线精品观看| 欧美经典一区二区三区| 国产精品网站在线| 在线视频欧美日韩| 欧美激情视频在线播放| 欧美一区二区三区四区高清| 国产精品福利网| 一级成人国产| 亚洲三级国产| 欧美国产一区二区| 亚洲激情女人| 欧美成人精品h版在线观看| 欧美一区国产二区| 国产欧美日韩中文字幕在线| 亚洲欧美高清| 亚洲午夜精品一区二区| 国产精品老牛| 欧美一区二区女人| 欧美在线三级| 久久9热精品视频| 国产日韩精品一区二区三区 | 久热精品视频在线观看| 经典三级久久| 噜噜噜91成人网| 久久综合色影院| 亚洲欧洲在线观看| 亚洲欧洲美洲综合色网| 久久视频在线看| 亚洲国产精品第一区二区三区| 久久亚洲欧美国产精品乐播| 久久久久久久综合色一本| 亚洲动漫精品| 最新精品在线| 国产精品久久久久77777| 欧美一级片一区| 久久成年人视频| 亚洲国产毛片完整版| 最新亚洲一区| 国产精品久久久久久久久久免费看| 亚洲欧美卡通另类91av| 亚洲欧美中文日韩在线| 在线播放一区| 亚洲激情中文1区| 国产精品久久九九| 久久亚洲视频| 欧美精品久久99久久在免费线| 亚洲午夜91| 久久精品国产亚洲一区二区三区| 亚洲激情中文1区| 免费一级欧美在线大片| 久久这里有精品视频| 9久re热视频在线精品| 亚洲伊人第一页| 国产亚洲亚洲| 蜜桃av综合| 国产精品尤物| 欧美成人精品一区二区| 欧美精品一区二区蜜臀亚洲| 在线视频精品一区| 亚洲在线一区二区| 亚洲国产一区二区精品专区| 亚洲国产精品久久久久婷婷884 | 久久青草久久| 国产精品高精视频免费| 欧美va亚洲va日韩∨a综合色| 欧美视频在线看| 欧美风情在线| 国产一区二区观看| 亚洲午夜精品久久| 夜夜嗨av一区二区三区四季av| 欧美制服第一页| 亚洲欧美日韩成人高清在线一区| 麻豆久久精品| 久久婷婷蜜乳一本欲蜜臀| 欧美日韩亚洲国产精品| 嫩草影视亚洲| 久久免费99精品久久久久久| 欧美aⅴ一区二区三区视频| 亚洲一区久久久| 欧美了一区在线观看| 亚洲伊人观看| 久久精品国内一区二区三区| 一区二区日本视频| 亚洲午夜精品在线| 在线观看91精品国产麻豆| 亚洲欧美激情在线视频| 亚洲一级黄色av| 欧美日韩国产精品专区| 亚洲国产精品黑人久久久 | 欧美高清在线视频| 国产亚洲精久久久久久| 亚洲一区中文字幕在线观看| 亚洲视频在线视频| 欧美精品久久天天躁| 亚洲丰满少妇videoshd| 亚洲国产精品高清久久久| 久久久九九九九| 美女精品国产| 亚洲黄色一区| 欧美裸体一区二区三区| 亚洲精品一二区| 亚洲二区免费| 亚洲欧美偷拍卡通变态| 在线综合欧美| 国产精品久久久久久久7电影| 免费亚洲一区| 黄色国产精品一区二区三区| 日韩午夜激情电影| 日韩视频一区二区在线观看 | 狠狠色综合网站久久久久久久| 久久精品国产久精国产思思 | 欧美在线三区| 亚洲欧洲一区二区三区在线观看| 亚洲影音先锋| 亚洲黄色性网站| 国产精品一区二区在线观看不卡| 美女脱光内衣内裤视频久久网站| 中日韩在线视频| 欧美韩日精品| 久久在线视频| 欧美一区二区在线免费观看| 日韩视频永久免费观看| 国产亚洲欧洲| 国产精品美腿一区在线看| 欧美+日本+国产+在线a∨观看| 亚洲欧美综合精品久久成人| 日韩性生活视频| 亚洲国产第一页| 免费在线视频一区| 久久国产精品久久久久久电车| 一本大道久久精品懂色aⅴ| 亚洲国产日韩欧美在线动漫| 国产字幕视频一区二区| 午夜视频久久久久久| 亚洲国产va精品久久久不卡综合| 国产精品入口66mio|