This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. add range-base for 2. update dslings 3. add Resources.md Signed-off-by: SPeak <[email protected]>
- Loading branch information
1 parent
9d95095
commit 324877d
Showing
17 changed files
with
584 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,11 @@ | |
namespace d2ds { | ||
// show your code | ||
|
||
int max(int a, int b) { | ||
return a > b ? a : b; | ||
} | ||
|
||
|
||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# 资源 | ||
|
||
开源电子书 + 代码练习 + 公开课 + 论坛讨论 | ||
|
||
#### 开源电子书 | ||
|
||
--- | ||
|
||
[在线阅读](https://sunrisepeak.github.io/d2ds/) | ||
|
||
[书籍原始文件](https://github.com/Sunrisepeak/d2ds/tree/main/src) | ||
|
||
|
||
|
||
#### 代码练习 | ||
|
||
--- | ||
|
||
[d2ds数据结构代码练习目录](https://github.com/Sunrisepeak/d2ds/tree/main/exercises) | ||
|
||
[d2ds数据结构代码检测项目录](https://github.com/Sunrisepeak/d2ds/tree/main/tests) | ||
|
||
|
||
|
||
#### 公开课 | ||
|
||
--- | ||
|
||
[课程主页](https://sunrisepeak.github.io/d2ds-courses/) | ||
|
||
[B站 - 视频列表](https://space.bilibili.com/65858958/channel/seriesdetail?sid=4040405) | ||
|
||
[YouTube - Playlist](https://www.youtube.com/playlist?list=PL7uow6t1QjF1MtrsJdhkJXsCKwwnVZApH) | ||
|
||
|
||
|
||
#### 论坛 | ||
|
||
--- | ||
|
||
[d2ds书籍 | dslings](https://github.com/Sunrisepeak/d2ds/discussions) | ||
|
||
[d2ds课程内容讨论](https://github.com/Sunrisepeak/d2ds-courses/discussions) | ||
|
||
|
||
|
||
#### 参与贡献 | ||
|
||
--- | ||
|
||
[d2ds - issues | task](https://github.com/Sunrisepeak/d2ds/issues) | ||
|
||
[d2ds-courses - issues | task](https://github.com/Sunrisepeak/d2ds-courses/issues) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# C++ 基础 | ||
|
||
本章节将会介绍在实现d2ds中练习对应的数据结构时会遇到的一些C++相关的基础知识 | ||
|
||
- [范型编程](other/1_cpp_base.template.md) | ||
- [语法糖 | 范围for循环](other/2_cpp_base.rangefor.md) |
Oops, something went wrong.