Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woosungkim0123/data-structures-deep-dive
Repository for Data Structures Learning
https://github.com/woosungkim0123/data-structures-deep-dive
c data-structures
Last synced: 14 days ago
JSON representation
Repository for Data Structures Learning
- Host: GitHub
- URL: https://github.com/woosungkim0123/data-structures-deep-dive
- Owner: woosungkim0123
- Created: 2023-04-11T04:40:40.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T15:21:40.000Z (11 months ago)
- Last Synced: 2024-11-15T04:16:40.610Z (2 months ago)
- Topics: c, data-structures
- Language: C
- Homepage:
- Size: 4.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 자료구조 파고들기
## 개요
이 저장소는 C 언어를 사용하여 다양한 자료구조의 기본 개념과 구현, 알고리즘 등을 다룹니다.
## 목차
### 기본 개념
- [자료구조 전 알아두면 좋은 지식](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/basic)
### 선형 자료구조 & ADT
- [연결 리스트](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/list)
- [스택](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/stack)
- [큐](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/queue)### 비선형 자료구조 & ADT
- [트리](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/tree)
- [힙](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/heap)
- [그래프](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/graph)
- [해시 테이블](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/hash_table)### 알고리즘 및 프로그래밍 기법
- [재귀 함수](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/recursion_function)
- [정렬](https://github.com/woosungkim0123/data-structures-deep-dive/tree/master/sort)