Skip to content

genielvn/data-structures-and-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Data Structure and Algorithm with Python

A quick overview and summary of the book Data Structures and Algorithm with Python by Michael T. Goodrich

Prerequisites

To follow along with the examples in this book, you need to have Python installed on your system. Below are the instructions for installing Python on different operating systems:

Windows

  1. Download the latest Python installer from the official website.
  2. Run the installer and follow the on-screen instructions.
  3. Make sure to check the box that says "Add Python to PATH" during the installation.

Mac

  1. Open the Terminal.
  2. Install Homebrew if you haven't already by running:
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Install Python by running:
    brew install python

Linux

For Debian-based distributions (like Ubuntu):

  1. Open the Terminal.
  2. Update the package list and install Python by running:
    sudo apt update
    sudo apt install python3

For Red Hat-based distributions (like Fedora):

  1. Open the Terminal.
  2. Install Python by running:
    sudo dnf install python3

After installing Python, you can verify the installation by running python --version or python3 --version in your terminal or command prompt.

Additionally, we will be using Jupyter Notebook throughout this lesson.

Installation

You can install Jupyter Notebook using pip:

pip install notebook

Chapters

About

A quick overview and summary of the book, Data Structures and Algorithm with Python, by Michael T. Goodrich

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published