An open API service indexing awesome lists of open source software.

https://github.com/lin93555/algorithm-practice-cpp-py

C++ and python solutions for LeetCode exercises. Covering basic data structures like arrays, linked lists, and advanced algorithms. Documenting my learning journey.
https://github.com/lin93555/algorithm-practice-cpp-py

Last synced: 6 months ago
JSON representation

C++ and python solutions for LeetCode exercises. Covering basic data structures like arrays, linked lists, and advanced algorithms. Documenting my learning journey.

Awesome Lists containing this project

README

          

---
# 📚 Algorithm-Practice-Cpp-py

👨‍💻 Author: Lin93555
📅 Start Date: 2025-03-12
🏗️ Language: C++ / Python

---

## 🚀 简介
This repository contains my C++ and Python solutions for LeetCode exercises.
Focus on arrays, prefix sums, binary search, and other data structures and algorithms.
Documenting my learning journey and daily progress.

---

## 📝 分类 & 进度
| 分类 | 完成题数 | 难度 | 状态 |
|------------|:--------:|:------:|:----:|
| 数组 Array | 2 | Easy | ✅ |

---

## 📂 文件结构
## 📝 已完成题目

### Array
| 题号 | 题目 | 难度 | 解法 | 文件路径 |
|------|------------------------|------|---------------|--------------------------------------------------|
| 35 | Search Insert Position | Easy | Binary Search | [查看代码](./Array/35_Search_Insert_Position.cpp) |
| 724 | Find Pivot Index | Easy | Prefix Sum | [查看代码](./Array/724_Find_Pivot_Index.cpp) |

---

## ✅ 代码规范
- 文件命名:`题号_题目英文名.cpp`
- 每道题写明:
- 题目描述
- 解题思路
- 时间复杂度 / 空间复杂度
- 完整 C++ 代码

---

## ✨ 后续计划
- 每天刷题 + 上传
- 总结算法模板
- 增加 Python 版本解法

---

## 📚 参考
- LeetCode HOT 100
- labuladong 的算法小抄