ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب An Introduction to the Analysis of Algorithms

دانلود کتاب مقدمه ای بر تحلیل الگوریتم ها

An Introduction to the Analysis of Algorithms

مشخصات کتاب

An Introduction to the Analysis of Algorithms

ویرایش: 2 
نویسندگان:   
سری:  
ISBN (شابک) : 9789814401166, 9814401161 
ناشر: World Scientific 
سال نشر: 2012 
تعداد صفحات: 211 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 1 مگابایت 

قیمت کتاب (تومان) : 41,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 9


در صورت تبدیل فایل کتاب An Introduction to the Analysis of Algorithms به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب مقدمه ای بر تحلیل الگوریتم ها نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب مقدمه ای بر تحلیل الگوریتم ها

این کتاب به‌روزرسانی‌شده و اصلاح‌شده، جانشین نسخه اول، یک راهنمای همراه عالی برای دانشجویان و مهندسان، به‌ویژه مهندسان نرم‌افزاری است که کد قابل اعتماد طراحی می‌کنند. این نسخه در حالی که مختصر است، از نظر ریاضی دقیق است، و پایه های دانشمندان کامپیوتر و ریاضیدانان علاقه مند به الگوریتم ها را پوشش می دهد. الگوریتم هایی که اغلب نادیده گرفته می شوند: الگوریتم های تصادفی و آنلاین؟ با تاکید ادامه مطلب...


توضیحاتی درمورد کتاب به خارجی

A successor to the first edition, this updated and revised book is a great companion guide for students and engineers alike, specifically software engineers who design reliable code. While succinct, this edition is mathematically rigorous, covering the foundations of both computer scientists and mathematicians with interest in algorithms.Besides covering the traditional algorithms of Computer Science such as Greedy, Dynamic Programming and Divide & Conquer, this edition goes further by exploring two classes of algorithms that are often overlooked: Randomised and Online algorithms ? with emphas Read more...



فهرست مطالب

Contents......Page 12
Preface......Page 8
1.1 Induction......Page 15
1.2 Invariance......Page 18
1.3 Correctness of algorithms......Page 20
1.3.1 Division algorithm......Page 21
1.3.2 Euclid's algorithm......Page 22
1.3.3 Palindromes algorithm......Page 24
1.3.4 Further examples......Page 26
1.3.5 Recursion and fixed points......Page 29
1.3.6 Formal verification......Page 32
1.4 Stable marriage......Page 35
1.5 Answers to selected problems......Page 38
1.6 Notes......Page 51
2.1 Minimum cost spanning trees......Page 53
2.2 Jobs with deadlines and profits......Page 60
2.3.1 Make change......Page 63
2.3.2 Maximum weight matching......Page 64
2.3.3 Shortest path......Page 65
2.3.4 Huffman codes......Page 68
2.4 Answers to selected problems......Page 70
2.5 Notes......Page 74
3. Divide and Conquer......Page 77
3.1 Mergesort......Page 78
3.2 Multiplying numbers in binary......Page 79
3.3 Savitch's algorithm......Page 82
3.4.1 Extended Euclid's algorithm......Page 84
3.4.2 Finite automata......Page 85
3.5 Answers to selected problems......Page 88
3.6 Notes......Page 89
4.1 Longest monotone subsequence problem......Page 91
4.2 All pairs shortest path problem......Page 93
4.2.1 Bellman-Ford algorithm......Page 94
4.3 Simple knapsack problem......Page 95
4.3.1 Dispersed knapsack problem......Page 98
4.3.2 General knapsack problem......Page 99
4.4 Activity selection problem......Page 100
4.5 Jobs with deadlines, durations and profits......Page 102
4.6.1 Consecutive subsequence sum problem......Page 104
4.6.2 Regular expressions......Page 105
4.6.3 Context free grammars......Page 107
4.7 Answers to selected problems......Page 110
4.8 Notes......Page 114
5. Online Algorithms......Page 115
5.1 List accessing problem......Page 116
5.2 Paging......Page 120
5.2.1 Demand paging......Page 121
5.2.3 LRU......Page 124
5.2.4 Marking algorithms......Page 128
5.2.5 FWF......Page 129
5.2.6 LFD......Page 130
5.3 Answers to selected problems......Page 134
5.4 Notes......Page 136
6. Randomized Algorithms......Page 137
6.1 Perfect matching......Page 138
6.2 Pattern matching......Page 142
6.3 Primality testing......Page 143
6.4 Public key cryptography......Page 147
6.4.1 Diffie-Hellman key exchange......Page 148
6.4.2 ElGamal......Page 150
6.4.3 RSA......Page 153
6.5 Further exercises......Page 154
6.6 Answers to selected problems......Page 156
6.7 Notes......Page 162
Appendix A Number Theory and Group Theory......Page 165
A.2 Notes......Page 170
Appendix B Relations......Page 171
B.1 Closure......Page 172
B.2 Equivalence relation......Page 174
B.3 Partial orders......Page 175
B.4 Lattices......Page 177
B.5 Fixed point theory......Page 179
B.6 Answers to selected problems......Page 183
B.7 Notes......Page 185
C.1 Propositional Logic......Page 187
C.2 First Order Logic......Page 192
C.3 Peano Arithmetic......Page 197
C.4 Answers to selected problems......Page 198
C.5 Notes......Page 200
Bibliography......Page 201
Index......Page 205




نظرات کاربران