-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
9 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
codes.rs | ||
algos.rs |
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,21 +1,10 @@ | ||
## Rust代码鉴赏(Rust Codes) | ||
## Algos算法教程 | ||
Rust作为一门现代化的系统编程语言,拥有与C/C++类似的性能,同时又能做非常底层的性能优化,因此非常适合写算法和leetcode。 | ||
|
||
- 官方网址:[https://codes.rs](https://codes.rs) | ||
- 修订时间: **尚未发行** | ||
- Rust版本:Rust edition 2021 | ||
- QQ交流群: 1009730433 | ||
Algos 算法教程涵盖了各种常用算法和数据结构的代码实现,以及leetcode题解,同时对于相关算法还提供了中文文档和注释,可以帮助大家更好、更快的学习。 | ||
|
||
学习Rust光看一讲语法的书是不够的,因为Rust语言着实复杂和高级,所以本书是<<Rust语言圣经>>的补充阅读书本,目标是: | ||
1. 为用户呈现高质量的代码片段,这种代码你往往会在某个时刻需要用到,却不知道如何更好的实现,甚至无法让它通过编译检查 | ||
2. 精算的数据结构和算法设计 | ||
3. 标准库代码分析 | ||
## 社区贡献者 | ||
我们深知自身水平的局限性,因此非常欢迎各路大神加入进来,共同打造这门未来可以在中国乃至全世界都排得上号的算法教程! | ||
|
||
所以,这本书可以成为你的口袋书和工具书,随时可以打开手机鉴赏几段令人赏心悦目的代码。 | ||
|
||
**如果你想系统学习Rust,请先阅读我们的开山巨作**:[Rust语言圣经](https://course.rs),绝对是一极其优秀的Rust全面教学书籍。 | ||
|
||
## 开源版权说明 | ||
|
||
Rust代码鉴赏是完全开源的电子书籍,但是也应该受到版权的保护。 | ||
|
||
因此我们选择了[No License](https://www.google.com.hk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwigkv-KtMT0AhXFdXAKHdI4BCcQFnoECAQQAw&url=https%3A%2F%2Fchoosealicense.com%2Fno-permission%2F&usg=AOvVaw3M2Q4IbdhnpJ2K71TF7SPB)作为我们的版权,这意味着读者可以随意的fork、阅读,但是不能私下修改后再分发,如果想要修改,请提RP或者加入[Rust编程学院](https://college.rs),成为正式成员。 | ||
## Rust 语言学习 | ||
如果大家熟悉算法,但是对于 Rust 语言还不够熟悉,可以看看 [Rust语言圣经](https://github.com/sunface/rust-course),它绝对是目前最优秀的 Rust 中文开源教程。 |
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ git config user.email "[email protected]" | |
git add . | ||
git commit -m 'release book' | ||
git branch -M gh-pages | ||
git remote add origin https://github.com/sunface/rust-codes | ||
git remote add origin https://github.com/course-rs/algos | ||
|
||
## push to github pages | ||
git push -u -f origin gh-pages |