Problem Solving with Algorithms and Data Structures
Problem Solving with Algorithms and Data Structures is a book and an interactive website that uses python to solve fun-looking problems. Contents: Algorithm Analysis Basic Data Structures: Stacks, Queues, Deques, Lists Recursion Sorting and Searching: Bubble, Selection, Insertion, Shell, Merge and Quick sorts Trees and Tree Agorithms: Binary Tree, Priority Queues, Binary Heaps, Binary Search […]
Read Full Post | Make a Comment ( Comments Off on Problem Solving with Algorithms and Data Structures )Drawing a Binary Tree in Ruby & Perl
When I started learning Ruby last year I decided to implement a binary tree and some of its basic operations (insert, delete, walk, and search) just to get my feet wet on the language. Binary trees are a good exercise because you need to use several features of the language like conditional statements, loops, and […]
Read Full Post | Make a Comment ( None so far )