Git Product home page Git Product logo

data_structure's Introduction

数据结构

学习记录数据结构相关知识包括:(🚨 表示未完成)

  1. 顺序表
    • 动态数组
  2. 链表
    • 单链表(带头结点/不带头结点)
    • 循环单链表
    • 双向链表 🚨
    • 循环双向链表
    • 顺序栈
    • 链式栈
  3. 队列
    • 顺序队列
    • 链式队列
  4. 二叉树
    • 二叉树遍历(前中后)
    • 平衡二叉树 🚨
    • B/B+ 树 🚨
    • 红黑树 🚨
  5. 图 🚨

参考

  1. 数据结构(C语言版)(第2版)- 严蔚敏
  2. 大话数据结构 - 程杰
  3. 数据结构 - 李慧琴

src_220830

目录结构

.
├── 01_sequence_list
│   ├── CMakeLists.txt
│   ├── dynamic_array.c
│   ├── dynamic_array.h
│   ├── dynamic_array_test.c
│   └── vector.c
├── 02_linked_list
│   ├── CMakeLists.txt
│   ├── list.c
│   ├── list.h
│   └── list_test.c
├── 03_linear_list
│   ├── CMakeLists.txt
│   ├── queue
│   └── stack
├── 04_binary_tree
│   ├── binary_tree_non_recursion.c
│   ├── binary_tree_recursion.c
│   ├── CMakeLists.txt
│   ├── leaf_node_num.c
│   ├── seq_stack.c
│   └── seq_stack.h
├── 05_graph
│   ├── 1.cpp
│   ├── digraph.c
│   └── undigraph.c
└── CMakeLists.txt

7 directories, 20 files

src_230830

目录结构

.
├── 01_dynamic_array
│   ├── dynamic_array.c
│   ├── dynamic_array.h
│   └── dynamic_array_test.c
├── 02_linked_list
│   ├── 01_single_linked_list
│   ├── 02_single_circular_linked_list
│   ├── 03_double_linked_list
│   ├── 04_double_circular_linked_list
│   ├── 05_head_linked_list
│   ├── 06_nohead_linked_list
│   ├── 07_double_circular_lib1
│   ├── 08_double_circular_lib2
│   └── 09_double_circular_lib3
└── CMakeLists.txt

11 directories, 4 files

持续更新。。。

data_structure's People

Contributors

keene-chen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.