Skip to content

记录学习浙江大学《数据结构》课程的学习笔记和练习题, 以及在工作中常见数据结构的整理

License

Notifications You must be signed in to change notification settings

JohnDoe86/DataStructure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Readme

About this repo

  • This repo consists of my notes of datastructures classes taught in University of ZHEJIANG on MOOC.

  • Most of the code that this branch contains will be written by C/C++.

  • Record C/C++ data structure exercises.

  • Summarize the learning content and put forward my own understanding.


Content

1. 数据结构与算法学习分析总结

第一章:基本概念

第二章:表、栈和队列

第三章:树

第四章:优先队列(堆)

第五章:图论算法

第六章:排序

2. 数据结构与算法分析练习题

1. Complexity

2. List

3. Trees

Note style

Code

All code will be marked ```Language ...code... ``` when the lecture is read in raw format. When viewed through Github and Pandoc, it will be color coded based on the language as such:

  • C
    #include <stdio.h>
    int main(void){
        char * foo = "bar";
        printf("%s",foo);
        return 0;
    }
    • All C code is Compiled with MinGW.org GCC-6.3.0-1.

About

记录学习浙江大学《数据结构》课程的学习笔记和练习题, 以及在工作中常见数据结构的整理

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 91.9%
  • C 8.1%