Skip to content

Reading notes and C++ code of the algorithms introduced on the book ALGORITHMS by ROBERT&KEVIN

Notifications You must be signed in to change notification settings

balddaddy/algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

One: Fundamentals

1.1 Basic Programming Model

Algorithms

Algorithms and data structures go hand in hand. Alogorithms, which can be discribed either by natural language as well as computer language, are independent with language.

The core of algorithm design is partially laid on the fact that people want to use less computing resources to do more computing.

We should be aware of the performance of an algorithm as well as how it works, which can help us when we need to decide which algorithm we should apply.

APIs

The purpose of an API is to separate the client from the implementation: the client should know nothing about the implementation other than information given in the API, and the implementation should not take properties of any particular client into account. APIs enable us to separately develop code for various purposes, then reuse it widely.

About

Reading notes and C++ code of the algorithms introduced on the book ALGORITHMS by ROBERT&KEVIN

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages