中文名: 算法設計手冊
原名: The Algorithm Design Manual
作者: Skiena
圖書分類: 軟件
資源格式: PDF
版本: 第二版
出版社: Skiena
書號: 978-1-84800-069-8
發行時間: 2008年
地區: 美國
語言: 英文
簡介:
![](https://www.ed2k.online/tushu/UploadFiles_2708/201707/2017071023204256.jpg)
網盤下載:
http://sharethefiles.com/forum/viewtopic.php?f=62&t=227821
內容簡介:本書是算法設計暢銷書的最新版本,是設計實用且高效算法的最全面指導書。本書揭密了算法的設計與分析,以簡單易懂的寫作風格,介紹了各種算法技術,著重強調了算法分析,全書包括兩大部分,“技術”部分介紹了設計和分析計算機算法的各種方法,“資源”部分給出了大量的參考資源,以及算法實現的各種資源,此外,在作者的個人網址上還提供了各種教學資源和參考材料,這些資源對讀者很有參考價值。.
本書可以作為算法設計課程的主教材,也是程序人員、研究人員和學生的常備參考書。
內容截圖:
目錄:
i practical algorithm design .
1 introduction to algorithm design
1.1 robot tour optimization
1.2 selecting the right jobs
1.3 reasoning about correctness
1.4 modeling the problem
1.5 about the wax stories
1.6 war story: psychic modeling
1.7 exercises
2 algorithm analysis
2.1 the ram model of computation
2.2 the big oh notation
2.3 growth rates and dominance relations
2.4 working with the big oh
2.5 reasoning about efficiency
2.6 logarithms and their applications
2.7 properties of logarithms
2.8 war story: mystery of the pyramids
2.9 advanced analysis (*)
2.10 exercises