From e7b4f43f2aa4dda47b57358ec078342485e62da4 Mon Sep 17 00:00:00 2001 From: wenbo Date: Tue, 11 Jun 2019 19:57:34 +0800 Subject: [PATCH] fix readme.md to let links work --- readme.md | 68 +++++++++++++++++++++++++++---------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/readme.md b/readme.md index b696650..02fd571 100644 --- a/readme.md +++ b/readme.md @@ -2,48 +2,48 @@ ****** ###编程 -1. [C Interfaces and Implementations](https://github.com/onestraw/ebook/blob/master/01_programming/C_Interfaces_and_Implementations__Techniques_for_Creating_Reusable_Software.pdf) -2. [C语言接口与实现(中文版)](https://github.com/onestraw/ebook/blob/master/01_programming/C%E8%AF%AD%E8%A8%80%E6%8E%A5%E5%8F%A3%E4%B8%8E%E5%AE%9E%E7%8E%B0.pdf) -3. [C缺陷与陷阱](https://github.com/onestraw/ebook/blob/master/01_programming/C%E9%99%B7%E9%98%B1%E4%B8%8E%E7%BC%BA%E9%99%B7.pdf) -4. [C专家编程](https://github.com/onestraw/ebook/blob/master/01_programming/C%E4%B8%93%E5%AE%B6%E7%BC%96%E7%A8%8B.pdf) -5. [The C Programming Language(中文第2版)](https://github.com/onestraw/ebook/blob/master/01_programming/The%20C%20Programming%20Language%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) -6. [UNIX环境高级编程(中文第2版)](https://github.com/onestraw/ebook/blob/master/01_programming/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) -10. [C++ Primer Plus(中文版第5版)](https://github.com/onestraw/ebook/blob/master/01_programming/C%2B%2B.Primer.Plus%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%E7%AC%AC5%E7%89%88%EF%BC%89.pdf) -11. [Effective C++(中文版第3版)](https://github.com/onestraw/ebook/blob/master/01_programming/Effective%20C%2B%2B%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%E7%AC%AC3%E7%89%88%EF%BC%89.pdf) -12. [The C++ Programming Language(3rd Edition)](https://github.com/onestraw/ebook/blob/master/01_programming/The%20C%2B%2B%20Programming%20Language.pdf) -21. [Python 核心编程(中文第2版)](https://github.com/onestraw/ebook/blob/master/01_programming/Python%E6%A0%B8%E5%BF%83%E7%BC%96%E7%A8%8B.pdf) -22. [How to Think Like a Computer Scientist--Learinig with Python](https://github.com/onestraw/ebook/blob/master/01_programming/How%20to%20Think%20Like%20a%20Computer%20Scientist--Learinig%20with%20Python.pdf) -31. [ANSI Common Lisp(中文版)](https://github.com/onestraw/ebook/blob/master/01_programming/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf) -32. [高级Bash脚本编程指南](https://github.com/onestraw/ebook/blob/master/01_programming/%E9%AB%98%E7%BA%A7Bash%E8%84%9A%E6%9C%AC%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97.pdf) +1. [C Interfaces and Implementations](01_programming/C_Interfaces_and_Implementations__Techniques_for_Creating_Reusable_Software.pdf) +2. [C语言接口与实现(中文版)](01_programming/C%E8%AF%AD%E8%A8%80%E6%8E%A5%E5%8F%A3%E4%B8%8E%E5%AE%9E%E7%8E%B0.pdf) +3. [C缺陷与陷阱](01_programming/C%E9%99%B7%E9%98%B1%E4%B8%8E%E7%BC%BA%E9%99%B7.pdf) +4. [C专家编程](01_programming/C%E4%B8%93%E5%AE%B6%E7%BC%96%E7%A8%8B.pdf) +5. [The C Programming Language(中文第2版)](01_programming/The%20C%20Programming%20Language%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) +6. [UNIX环境高级编程(中文第2版)](01_programming/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) +10. [C++ Primer Plus(中文版第5版)](01_programming/C%2B%2B.Primer.Plus%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%E7%AC%AC5%E7%89%88%EF%BC%89.pdf) +11. [Effective C++(中文版第3版)](01_programming/Effective%20C%2B%2B%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%E7%AC%AC3%E7%89%88%EF%BC%89.pdf) +12. [The C++ Programming Language(3rd Edition)](01_programming/The%20C%2B%2B%20Programming%20Language.pdf) +21. [Python 核心编程(中文第2版)](01_programming/Python%E6%A0%B8%E5%BF%83%E7%BC%96%E7%A8%8B.pdf) +22. [How to Think Like a Computer Scientist--Learinig with Python](01_programming/How%20to%20Think%20Like%20a%20Computer%20Scientist--Learinig%20with%20Python.pdf) +31. [ANSI Common Lisp(中文版)](01_programming/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf) +32. [高级Bash脚本编程指南](01_programming/%E9%AB%98%E7%BA%A7Bash%E8%84%9A%E6%9C%AC%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97.pdf) ###算法 -1. [算法导论(中文第2版)](https://github.com/onestraw/ebook/blob/master/02_algorithm/%E7%AE%97%E6%B3%95%E5%AF%BC%E8%AE%BA%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) -2. [算法心得:高效算法的奥秘(中文第2版)](https://github.com/onestraw/ebook/blob/master/02_algorithm/%E7%AE%97%E6%B3%95%E5%BF%83%E5%BE%97%EF%BC%9A%E9%AB%98%E6%95%88%E7%AE%97%E6%B3%95%E7%9A%84%E5%A5%A5%E7%A7%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) -3. [数据结构与算法分析——C语言描述(中文第2版)](https://github.com/onestraw/ebook/blob/master/02_algorithm/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95%E5%88%86%E6%9E%90%E2%80%94C%E8%AF%AD%E8%A8%80%E6%8F%8F%E8%BF%B0%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) -4. [Data Structures and Algorithm Analysis in C](https://github.com/onestraw/ebook/blob/master/02_algorithm/Data_Structures_and_Algorithm_Analysis_in_C.pdf) -5. [Algorithms on Strings, Trees and Sequences](https://github.com/onestraw/ebook/blob/master/02_algorithm/Algorithms_on_String_Trees_and_Sequences-libre.pdf) -6. [The Algorithm Design Manual(2nd Edition)](https://github.com/onestraw/ebook/blob/master/02_algorithm/The%20Algorithm%20Design%20Manual.pdf) -7. [Hacker's Delight(2nd Edition)](https://github.com/onestraw/ebook/blob/master/02_algorithm/Hacker%27s%20Delight%202nd%20Edition.pdf) +1. [算法导论(中文第2版)](02_algorithm/%E7%AE%97%E6%B3%95%E5%AF%BC%E8%AE%BA%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) +2. [算法心得:高效算法的奥秘(中文第2版)](02_algorithm/%E7%AE%97%E6%B3%95%E5%BF%83%E5%BE%97%EF%BC%9A%E9%AB%98%E6%95%88%E7%AE%97%E6%B3%95%E7%9A%84%E5%A5%A5%E7%A7%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) +3. [数据结构与算法分析——C语言描述(中文第2版)](02_algorithm/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95%E5%88%86%E6%9E%90%E2%80%94C%E8%AF%AD%E8%A8%80%E6%8F%8F%E8%BF%B0%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf) +4. [Data Structures and Algorithm Analysis in C](02_algorithm/Data_Structures_and_Algorithm_Analysis_in_C.pdf) +5. [Algorithms on Strings, Trees and Sequences](02_algorithm/Algorithms_on_String_Trees_and_Sequences-libre.pdf) +6. [The Algorithm Design Manual(2nd Edition)](02_algorithm/The%20Algorithm%20Design%20Manual.pdf) +7. [Hacker's Delight(2nd Edition)](02_algorithm/Hacker%27s%20Delight%202nd%20Edition.pdf) ###操作系统 -1. [Operating Systems:Internals and Design Principles(7th Edition)](https://github.com/onestraw/ebook/blob/master/03_operating_system/Operating%20Systems%20-%20Internals%20and%20Design%20Principles%207th.pdf) -2. [The Design of the Unix Operating System](https://github.com/onestraw/ebook/blob/master/03_operating_system/the_design_of_the_unix_operating_system.pdf) -3. [UNIX 操作系统设计(中文版)](https://github.com/onestraw/ebook/blob/master/03_operating_system/UNIX%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1.pdf) -4. [Linux内核设计与实现(中文第3版)](https://github.com/onestraw/ebook/blob/master/03_operating_system/Linux%E5%86%85%E6%A0%B8%E8%AE%BE%E8%AE%A1%E4%B8%8E%E5%AE%9E%E7%8E%B0%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89.pdf) -5. [Linux Kernel Development(3rd Edition)](https://github.com/onestraw/ebook/blob/master/03_operating_system/Linux.Kernel.Development.3rd.Edition.pdf) -6. [Linux内核源代码情景分析](https://github.com/onestraw/ebook/blob/master/03_operating_system/Linux%E5%86%85%E6%A0%B8%E6%BA%90%E4%BB%A3%E7%A0%81%E6%83%85%E6%99%AF%E5%88%86%E6%9E%90.pdf) +1. [Operating Systems:Internals and Design Principles(7th Edition)](03_operating_system/Operating%20Systems%20-%20Internals%20and%20Design%20Principles%207th.pdf) +2. [The Design of the Unix Operating System](03_operating_system/the_design_of_the_unix_operating_system.pdf) +3. [UNIX 操作系统设计(中文版)](03_operating_system/UNIX%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E8%AE%BE%E8%AE%A1.pdf) +4. [Linux内核设计与实现(中文第3版)](03_operating_system/Linux%E5%86%85%E6%A0%B8%E8%AE%BE%E8%AE%A1%E4%B8%8E%E5%AE%9E%E7%8E%B0%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89.pdf) +5. [Linux Kernel Development(3rd Edition)](03_operating_system/Linux.Kernel.Development.3rd.Edition.pdf) +6. [Linux内核源代码情景分析](03_operating_system/Linux%E5%86%85%E6%A0%B8%E6%BA%90%E4%BB%A3%E7%A0%81%E6%83%85%E6%99%AF%E5%88%86%E6%9E%90.pdf) ###其它 -1. [How Google Tests Software](https://github.com/onestraw/ebook/blob/master/09_other/How-Google-Tests-Software.pdf) -2. [Google Hacking技术手册](https://github.com/onestraw/ebook/blob/master/09_other/Google%20Hacking%E6%8A%80%E6%9C%AF%E6%89%8B%E5%86%8C.pdf) -3. [奇思妙想:15位计算机天才及其重大发现](https://github.com/onestraw/ebook/blob/master/09_other/%E5%A5%87%E6%80%9D%E5%A6%99%E6%83%B3%EF%BC%9A15%E4%BD%8D%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%A4%A9%E6%89%8D%E5%8F%8A%E5%85%B6%E9%87%8D%E5%A4%A7%E5%8F%91%E7%8E%B0.pdf) -4. [黑客与画家](https://github.com/onestraw/ebook/blob/master/09_other/%E9%BB%91%E5%AE%A2%E4%B8%8E%E7%94%BB%E5%AE%B6.pdf) -5. [浪潮之巅](https://github.com/onestraw/ebook/blob/master/09_other/%E6%B5%AA%E6%BD%AE%E4%B9%8B%E5%B7%85.pdf) -6. [数学之美](https://github.com/onestraw/ebook/blob/master/09_other/%E6%95%B0%E5%AD%A6%E4%B9%8B%E7%BE%8E.pdf) -7. [代码之美](https://github.com/onestraw/ebook/blob/master/09_other/%E4%BB%A3%E7%A0%81%E4%B9%8B%E7%BE%8EBeautiful%20Code.pdf) -8. [高效程序员的45个习惯](https://github.com/onestraw/ebook/blob/master/09_other/%E9%AB%98%E6%95%88%E7%A8%8B%E5%BA%8F%E5%91%98%E7%9A%8445%E4%B8%AA%E4%B9%A0%E6%83%AF.pdf) +1. [How Google Tests Software](09_other/How-Google-Tests-Software.pdf) +2. [Google Hacking技术手册](09_other/Google%20Hacking%E6%8A%80%E6%9C%AF%E6%89%8B%E5%86%8C.pdf) +3. [奇思妙想:15位计算机天才及其重大发现](09_other/%E5%A5%87%E6%80%9D%E5%A6%99%E6%83%B3%EF%BC%9A15%E4%BD%8D%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%A4%A9%E6%89%8D%E5%8F%8A%E5%85%B6%E9%87%8D%E5%A4%A7%E5%8F%91%E7%8E%B0.pdf) +4. [黑客与画家](09_other/%E9%BB%91%E5%AE%A2%E4%B8%8E%E7%94%BB%E5%AE%B6.pdf) +5. [浪潮之巅](09_other/%E6%B5%AA%E6%BD%AE%E4%B9%8B%E5%B7%85.pdf) +6. [数学之美](09_other/%E6%95%B0%E5%AD%A6%E4%B9%8B%E7%BE%8E.pdf) +7. [代码之美](09_other/%E4%BB%A3%E7%A0%81%E4%B9%8B%E7%BE%8EBeautiful%20Code.pdf) +8. [高效程序员的45个习惯](09_other/%E9%AB%98%E6%95%88%E7%A8%8B%E5%BA%8F%E5%91%98%E7%9A%8445%E4%B8%AA%E4%B9%A0%E6%83%AF.pdf) ###链接