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

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.

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