vendestine / Algorithm_Template

Record all the algorthms for contest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

算法模板库

使用说明

表格题单里面会给出每个数据结构和算法的基本知识,题单,每道题的思路

算法目录里会以文件形式,列出每种算法的常用模板,表格题单每道题目的代码

目录文件结构

│  LICENSE
│  README.md
│  
├─basis
│  ├─binary_search
│  │      binary_search_ans.cpp
│  │      binary_search_float.cpp
│  │      binary_search_int.cpp
│  │      ternary_search.cpp
│  │      
│  ├─bit_operation
│  │      bits.cpp
│  │      set.cpp
│  │      
│  ├─pre_suf_diff
│  │      diff.cpp
│  │      prefix_suffix_division.cpp
│  │      prefix_sum.cpp
│  │      
│  └─two_pointer
│          opposite_direction.cpp
│          same_direction.cpp
│          sliding_window.cpp
│          
├─data_structure
│  ├─binary_tree
│  │      binary_tree.cpp
│  │      
│  ├─List
│  │      list.cpp
│  │      
│  ├─queue
│  │      queue.cpp
│  │      
│  ├─stack
│  │      stack.cpp
│  │      
│  └─tree
│          tree.cpp
│          
├─graph
│      graph_basic.cpp
│      graph_search.cpp
│      
└─search
        backtracking.cpp
        bfs.cpp
        dfs.cpp

算法目录

学习资源

灵神算法模板

leetcode3000+选手算法模板库

acwing体系算法模板库

About

Record all the algorthms for contest

License:MIT License


Languages

Language:C++ 100.0%