Video description
Learn how to make your Python code more efficient by using algorithms to solve a variety of tasks or computational problems. In this video course, you’ll learn algorithm basics and then tackle a series of problems—such as determining the shortest path through a graph and the minimum edit distance between two genomic sequences—using existing algorithms.
Computer scientist George Heineman fully implements each algorithm from scratch in real time, narrating key concepts and steps along the way, and then demonstrates the execution performance of the algorithm implementations on the model problems.
Algorithms are essential to the way computers process data. The examples you’ll learn in this course are among the most common algorithms in computer science, but they illustrate many of the concerns you’ll face as you work to create algorithms on your own. All code is available on GitHub (https://github.com/heineman/python-algorithms).
The topics in this video course include:
- Just enough mathematical concepts to understand how to analyze algorithms
- Practical advice to identify code inefficiencies, using algorithm analysis
- A description of fundamental data structures (such as binary trees, heaps, and graphs) and their use in efficient algorithms
- Problem-solving strategies, including Divide and Conquer, Dynamic Programming, Greedy, and Brute Force approaches
- Full implementations of each algorithm in Python within the context of a specific problem
- A description of the most common algorithmic families, including constant-time, logarithmic time, linear time, polynomial time, and exponential time
George T. Heineman is an Associate Professor of Computer Science at Worcester Polytechnic Institute in Massachusetts.
Product information
- Title: Working with Algorithms in Python
- Author(s):
- Release date: July 2014
- Publisher(s): O'Reilly Media, Inc.
- ISBN: 9781491907801
You might also like
video
Algorithms and Data Structures in Python: An overview
How to test new customer metrics and understanding why that is a key part of any …
book
Python Algorithms: Mastering Basic Algorithms in the Python Language, Second Edition
Python Algorithms, Second Edition explains the Python approach to algorithm analysis and design. Written by Magnus …
video
Python 3: Project-based Python, Algorithms, Data Structures
This course is one of the most comprehensive and beginner-friendly courses on learning to code with …
book
Python Data Structures and Algorithms
Implement classic and functional data structures and algorithms using Python About This Book A step by …