Skip to content

Commit 7e1c289

Browse files
committed
Added link to Swift Alg Club book
1 parent 2a5e031 commit 7e1c289

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed
Loading

README.markdown

+6-20
Original file line numberDiff line numberDiff line change
@@ -206,32 +206,18 @@ A lot of software developer interview questions consist of algorithmic puzzles.
206206
- [Dining Philosophers](DiningPhilosophers/)
207207
- [Egg Drop Problem](Egg%20Drop%20Problem/)
208208
- [Encoding and Decoding Binary Tree](Encode%20and%20Decode%20Tree/)
209-
## Learn more!
210209

211-
For more information, check out these great books:
210+
## Learn more!
212211

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!
218213

219-
The following books are available for free online:
214+
![Data Structures & Algorithms in Swift Book](Images/DataStructuresAndAlgorithmsInSwift.png)
220215

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.
227217

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.
229219

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!
235221

236222
## Credits
237223

0 commit comments

Comments
 (0)