https://github.com/zh1995/algorithm
This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
https://github.com/zh1995/algorithm
algorithms leetcode
Last synced: 3 months ago
JSON representation
This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
- Host: GitHub
- URL: https://github.com/zh1995/algorithm
- Owner: ZH1995
- Created: 2023-12-30T01:10:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T14:04:26.000Z (almost 2 years ago)
- Last Synced: 2025-03-13T11:13:43.026Z (about 1 year ago)
- Topics: algorithms, leetcode
- Language: C++
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithm
这个仓库包含我在各大平台(如LeetCode、牛客网等)的算法题解集合,主要使用C++实现。每个题解包含了详细的解题思路和代码实现。
## 项目结构
```sh
Algorithm/
├── README.md
├── problems/
│ ├── leetcode/
│ │ ├── README.md
│ │ ├── cn/
│ │ │ ├── 12.整数转罗马数字.cpp
│ │ │ ├── 13.罗马数字转整数.cpp
│ │ │ ├── ...(更多题解文件)
│ │ ├── en/
│ │ │ ├── 1.Two-Sum.md
│ │ │ ├── ...(更多英文题解文件)
│ ├── nowcoder/
│ │ ├── README.md
│ │ ├── NB1-删除链表峰值.cpp
│ │ ├── ...(更多题解文件)
├── study-plans/
│ ├── README.md
│ ├── leetcode/
│ │ ├── cn/
│ │ │ ├── 面试经典150题.md
│ ├── nowcoder/
│ │ ├── 面试高频202.md
└── .gitignore
```
## 题单列表
[leetcode面试经典150题](./study-plans/leetcode/cn/面试经典150题.md)
[牛客面试高频202](./study-plans/nowcoder/面试高频202.md)
## 题目列表
[leetcode](./problems/leetcode/README.md)
[牛客网](./problems/nowcoder/README.md)
## 贡献指南
欢迎提交Pull Request来贡献新的题解或优化现有解法。请确保:
1. 代码风格一致且有详细注释
2. 提供清晰的解题思路
3. 如果有多种解法,请尽量都包含在内并比较它们的优缺点
## 许可证
MIT