Lokvin Wiki
Register
Tag: sourceedit
Tag: sourceedit
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
== Data Structure & Algorithm ==
== 插入排序 ==
 
  +
* 常用数据结构: 链表,栈,队列,集合, hash table, 树,堆,优先级队列,图。
* [insertion sort] - 插入排序
 
  +
* 使用数据结构的三个原因: 效率,抽象,重用性
   
  +
== Sort ==
== binary search : order array ==
 
  +
* https://zh.wikipedia.org/wiki/%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95 - 排序算法 from wikipedia
* https://github.com/yren/algorithm/blob/master/array_binary_search.txt
 

Latest revision as of 11:20, 29 November 2016

Data Structure & Algorithm[]

  • 常用数据结构: 链表,栈,队列,集合, hash table, 树,堆,优先级队列,图。
  • 使用数据结构的三个原因: 效率,抽象,重用性

Sort[]