Programming Foundations: Algorithms

0
Join & Subscribe
LinkedIn Learning
Free Trial Available
English
Certificate Available
1-2 hours worth of material
selfpaced

Overview

Algorithms are the universal building blocks of programming. Learn the most popular and useful programming algorithms for searching and sorting data, counting values, and more.

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.

Syllabus

Introduction
  • Algorithms power the world
  • What you should know
1. Overview
  • What are algorithms?
  • Common algorithms in programming
  • Measuring algorithm performance
2. Common Data Structures
  • Introduction to data structures
  • Arrays
  • Linked lists
  • Linked lists walkthrough
  • Stacks and queues
  • Stacks and queues walkthrough
  • Hash tables
3. Recursion
  • Understanding recursion
  • Simple recursion example
  • Power and factorial
4. Sorting Data
  • Overview of sorting
  • The bubble sort
  • The merge sort
  • Implement the merge sort
  • The quicksort
  • Implement the quicksort
5. Searching Data
  • Unordered list search
  • Ordered list search
  • Determine if a list is sorted
6. Other Algorithms
  • Unique filtering with hash table
  • Value counting with hash table
  • Find max value recursively
Conclusion
  • Next steps

Taught by

Joe Marini