Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carsonslovoka/exercise
https://github.com/carsonslovoka/exercise
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/carsonslovoka/exercise
- Owner: CarsonSlovoka
- License: mit
- Created: 2023-11-15T02:10:16.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-17T09:48:13.000Z (12 months ago)
- Last Synced: 2023-11-17T10:42:28.831Z (12 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exercise
主要使用go語言來練習一些常見的演算法或者一些簡單的測驗
## Directory Structure
```
exercise/
│
├── algorithms/ # 演算法主目錄
│ ├── sorting/ # 排序演算法
│ │ ├── quicksort/
│ │ ├── mergesort/
│ │ ├── bubblesort/
│ │ └── heapsort/
│ │
│ ├── search/ # 搜索演算法
│ │ ├── binary_search/
│ │ └── linear_search/
│ │
│ ├── graph/ # 圖形演算法
│ │ ├── dijkstra/
│ │ ├── bellman_ford/
│ │ └── floyd_warshall/
│ │
│ ├── dynamic_programming/ # 動態規劃
│ │ ├── fibonacci/
│ │ ├── knapsack/
│ │ └── longest_common_subsequence/
│ │
│ └── data_structures/ # 資料結構相關演算法
│ ├── binary_trees/
│ ├── linked_lists/
│ ├── stacks_and_queues/
│ └── hash_tables/
│
├── design_patterns/ # 設計模式
│ ├── creational/
│ ├── structural/
│ └── behavioral/
│
├── system_design/ # 系統設計
│ ├── scalability/
│ ├── reliability/
│ └── security/
│
├── databases/ # 資料庫相關
│ ├── sql_queries/
│ ├── normalization/
│ └── indexing/
│
└── challenges/ # 編程挑戰和練習題
│ ├── duplicates/ # <重複問題>相關,每個主題裡面,會收藏該主題相關的三種難度
│ │ ├── easy # 每個難度裡面有n種題目
│ │ │ ├── ex1
│ │ │ ├── ...
│ │ │ └── exN
│ │ ├── medium
│ │ │ ├── ex1
│ │ │ ├── ...
│ │ │ └── exN
│ │ └── hard
│ │ ├── ex1
│ │ ├── ...
│ │ └── exN
│ │
│ └── ... (依照挑戰的主題來新增目錄)
│ ├── easy
│ ├── medium
│ └── hard
│
└──
```