常用数据结构及复杂度

  • http://www.cnblogs.com/gaochundong/p/3813252.html
  • 常用数据结构的时间复杂度
Data Structure Add Find Delete GetByIndex

 Array (T[]) O(n)

O(n)

O(n)

O(1)

 Linked list (LinkedList<T>) O(1)

O(n)

O(n)

O(n)

 Resizable array list (List<T>) O(1)

O(n)

O(n)

O(1)

 Stack (Stack<T>) O(1)

-

O(1)

-

 Queue (Queue<T>) O(1)

-

O(1)

-

 Hash table (Dictionary<K,T>) O(1)

O(1)

O(1)

-

 Tree-based dictionary (SortedDictionary<K,T>)

O(log n)

O(log n)

O(log n)

-

 Hash table based set (HashSet<T>)

O(1)

O(1)

O(1)

-

 Tree based set (SortedSet<T>)

O(log n)

O(log n)

O(log n)

-

【万字总结】图解堆算法、链表、栈与队列(多图预警)

  • http://blog.csdn.net/nomasp/article/details/50349172

图论算法 有图有代码 万字总结 向前辈致敬

  • http://blog.csdn.net/nomasp/article/details/45827145

面试经验分享之数据结构、算法题

  • http://www.36dsj.com/archives/21410
  • 数据结构题目
    • 概述
    • 分类讨论
      • 类型一:数据结构实现
      • 类型二:数据结构应用
    • 准备建议
  • 算法题目
    • 概述
    • 分类讨论
      • 类型一:经典算法实现题
      • 类型二:思维益智题

链表, 如何最快地找出一个单向链表的中间结点?

怎样用最快的方法判断链表是否有环?

以后有面试官问你「跳跃表」,你就把这篇文章扔给他 - 算法与数据结构

  • https://mp.weixin.qq.com/s/-ogyFJd9Jz4jROPfK8W6Vw

你真的了解字典(Dictionary)吗? - 算法与数据结构

  • https://mp.weixin.qq.com/s/8T7xkq5mrEHRwedyBWbpwg
  • http://www.cnblogs.com/CoderAyu/p/10360608.html
  • 字典为什么能无限地Add呢?
  • 从字典中取Item速度非常快,为什么呢?
  • 初始化字典可以指定字典容量,这是否多余呢?
  • 字典的桶buckets 长度为素数,为什么呢?

面试总结之数据结构(Data Structure)的更多相关文章

  1. leetcode面试准备:Add and Search Word - Data structure design

    leetcode面试准备:Add and Search Word - Data structure design 1 题目 Design a data structure that supports ...

  2. [LeetCode] All O`one Data Structure 全O(1)的数据结构

    Implement a data structure supporting the following operations: Inc(Key) - Inserts a new key with va ...

  3. UVa 11995:I Can Guess the Data Structure!(数据结构练习)

    I Can Guess the Data Structure! There is a bag-like data structure, supporting two operations: 1 x T ...

  4. 【暑假】[实用数据结构]UVa11995 I Can Guess the Data Structure!

    UVa11995  I Can Guess the Data Structure! 思路:边读边模拟,注意empty的判断! 代码如下: #include<iostream> #inclu ...

  5. [leetcode]432. All O`one Data Structure全O(1)数据结构

    Implement a data structure supporting the following operations: Inc(Key) - Inserts a new key with va ...

  6. FAT文件系统规范v1.03学习笔记---2.FAT区之FAT数据结构(Fat Data Structure)

    1.前言 本文主要是对Microsoft Extensible Firmware Initiative FAT32 File System Specification中文翻译版的学习笔记. 每个FAT ...

  7. [leetcode]211. Add and Search Word - Data structure design添加查找单词 - 数据结构设计

    Design a data structure that supports the following two operations: void addWord(word) bool search(w ...

  8. [LeetCode] Two Sum III - Data structure design 两数之和之三 - 数据结构设计

    Design and implement a TwoSum class. It should support the following operations:add and find. add - ...

  9. Mesh Data Structure in OpenCascade

    Mesh Data Structure in OpenCascade eryar@163.com 摘要Abstract:本文对网格数据结构作简要介绍,并结合使用OpenCascade中的数据结构,将网 ...

随机推荐

  1. 2018-2019 Russia Open High School Programming Contest (Unrated, Online Mirror, ICPC Rules, Teams Preferred)

    前言 有一场下午的cf,很滋磁啊,然后又和dalao(见右面链接)组队打了,dalao直接带飞我啊. 这是一篇题解,也是一篇总结,当然,让我把所有的题目都写个题解是不可能的了. 按照开题顺序讲吧. 在 ...

  2. 微信小程序登录,获取code,获取openid,获取session_key

    微信小程序登录 wx.login(Object object) 调用接口获取登录凭证(code).通过凭证进而换取用户登录态信息,包括用户的唯一标识(openid)及本次登录的会话密钥(session ...

  3. GetLastError()数字_转换为_文字

    1.具体参数 可参看 http://blog.csdn.net/hongweigg/article/details/6821536 或 其它文章 或 MSDN 2.VC6 测试代码: #include ...

  4. markdown哈哈

    function box(){ 世界你好 }

  5. REST服务使用@RestController实例,输出xml/json

    REST服务使用@RestController实例,输出xml/json 需要用到的服务注解 org.springframework.web.bind.annotation.RestControlle ...

  6. linux 常用操作以及概念

    一.常用操作以及概念 查看LINUX发行版的名称及其版本号的命令: lsb_release -a cat /etc/redhat-release(针对redhat,Fedora) 0.rpm包路径:/ ...

  7. 无法安装64位版本的office因为在您的pc

    无法安装64位版本的office因为在您的pcWindows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Installer\Products\00 ...

  8. BZOJ1074 [SCOI2007]折纸origami

    我们先看每个点可能从哪些点折过来的,2^10枚举对角线是否用到. 然后再模拟折法,查看每个点是否满足要求. 恩,计算几何比较恶心,还好前几天刚写过一道更恶心的计算几何,点类直接拷过来2333. /** ...

  9. 039——VUE中组件之子组件中data使用实例与text-xtemplate的使用方法

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  10. HDU 1241 Oil Deposits bfs 难度:0

    http://acm.hdu.edu.cn/showproblem.php?pid=1241 对每个还未访问的点bfs,到达的点都标为一块,最后统计有多少块即可 #include <cstdio ...