You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.markdown
+6-20
Original file line number
Diff line number
Diff line change
@@ -206,32 +206,18 @@ A lot of software developer interview questions consist of algorithmic puzzles.
206
206
-[Dining Philosophers](DiningPhilosophers/)
207
207
-[Egg Drop Problem](Egg%20Drop%20Problem/)
208
208
-[Encoding and Decoding Binary Tree](Encode%20and%20Decode%20Tree/)
209
-
## Learn more!
210
209
211
-
For more information, check out these great books:
210
+
## Learn more!
212
211
213
-
-[Introduction to Algorithms](https://mitpress.mit.edu/books/introduction-algorithms) by Cormen, Leiserson, Rivest, Stein
214
-
-[The Algorithm Design Manual](http://www.algorist.com) by Skiena
215
-
-[Elements of Programming Interviews](http://elementsofprogramminginterviews.com) by Aziz, Lee, Prakash
216
-
-[Algorithms](http://www.cs.princeton.edu/~rs/) by Sedgewick
217
-
-[Grokking Algorithms](https://www.manning.com/books/grokking-algorithms) by Aditya Bhargava
212
+
Like what you see? Check out [Data Structures & Algorithms in Swift](https://store.raywenderlich.com/products/data-structures-and-algorithms-in-swift), the official book by the Swift Algorithm Club team!
218
213
219
-
The following books are available for free online:
214
+

220
215
221
-
-[Algorithms](http://www.beust.com/algorithms.pdf) by Dasgupta, Papadimitriou, Vazirani
222
-
-[Algorithms, Etc.](http://jeffe.cs.illinois.edu/teaching/algorithms/) by Erickson
223
-
-[Algorithms + Data Structures = Programs](http://www.ethoberon.ethz.ch/WirthPubl/AD.pdf) by Wirth
224
-
- Algorithms and Data Structures: The Basic Toolbox by Mehlhorn and Sanders
225
-
-[Open Data Structures](http://opendatastructures.org) by Pat Morin
226
-
-[Wikibooks: Algorithms and Implementations](https://en.wikibooks.org/wiki/Algorithm_Implementation)
216
+
You’ll start with the fundamental structures of linked lists, queues and stacks, and see how to implement them in a highly Swift-like way. Move on to working with various types of trees, including general purpose trees, binary trees, AVL trees, binary search trees, and tries.
227
217
228
-
Other algorithm repositories:
218
+
Go beyond bubble and insertion sort with better-performing algorithms, including mergesort, radix sort, heap sort, and quicksort. Learn how to construct directed, non-directed and weighted graphs to represent many real-world models, and traverse graphs and trees efficiently with breadth-first, depth-first, Dijkstra’s and Prim’s algorithms to solve problems such as finding the shortest path or lowest cost in a network.
229
219
230
-
-[EKAlgorithms](https://github.com/EvgenyKarkan/EKAlgorithms). A great collection of algorithms in Objective-C.
231
-
-[@lorentey](https://github.com/lorentey/). Production-quality Swift implementations of common algorithms and data structures.
232
-
-[Rosetta Code](http://rosettacode.org). Implementations in pretty much any language you can think of.
233
-
-[AlgorithmVisualizer](http://jasonpark.me/AlgorithmVisualizer/). Visualize algorithms on your browser.
234
-
-[Swift Structures](https://github.com/waynewbishop/SwiftStructures) Data Structures with directions on how to use them [here](http://waynewbishop.com/swift)
220
+
By the end of this book, you’ll have hands-on experience solving common issues with data structures and algorithms — and you’ll be well on your way to developing your own efficient and useful implementations!
0 commit comments