Programming Foundations: Algorithms

Author: Joe Marini
Released: 11/8/2018
Skill Level: Beginner
Duration: 1h 45m




Algorithms are the universal building blocks of programming. They power the software you use every day, whether it's a spreadsheet, a social network, or a driving assistant. Algorithms offer a way to think about programming challenges in plain English, before they are translated into a specific language like C# or JavaScript. In this course, author and developer Joe Marini explains some of the most popular and useful algorithms for searching and sorting information, working with techniques like recursion, and understanding common data structures. He also discusses the performance implications of different algorithms and how to evaluate the performance of a given algorithm. Each algorithm is shown in practice in Python, but the lessons can be applied to any programming language.

Topics include:
Measuring algorithm performance
Working with data structures such as arrays, stacks, and queues
Looping and recursion
Sorting data
Searching data
Filtering and value counting with hash tables

Exercise Files:
https://drive.google.com/open?id=19LS_BM6FOF6CZuQy7wWjO71meTYBBiH8


Comments

Popular posts from this blog

Programming Foundations: Object-Oriented Design

Learning Java