Skip to content

VivienKosasih/The-Algorithms

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Programming â–²lgorithms implemented in C++

andikaleonardo.com

Introduction

Everybody in this country should learn to program a computer, because it teaches you how to think.
— steve jobs

Solutions are coded using C++
Languange used are English and Bahasa
For Learning Purpose only

© 2018 Andika Leonardo. All Rights Reserved.

Book

I normally don't read book
but I can recommend this E-book

Computer Science Distilled by Wladston Ferreira Filho.

This Book was originally from Source Making for $22.50
The Book was moved to GitHub by Andika Leonardo for collaborative updating and maintenance.

Algorithm & Basic Programming

What is an algorithm?

Informally, an algorithm is any well-defined computational procedure that takes some value, or set of values, as input and produces some value, or set of values, as output. An algorithm is thus a sequence of computational steps that transform the input into the output.

An algorithm should have three important characteristics to be considered valid:

  • It should be finite: If your algorithm never ends trying to solve the problem it was designed to solve then it is useless
  • It should have well defined instructions: Each step of the algorithm has to be precisely defined; the instructions should be unambiguously specified for each case.
  • It should be effective: The algorithm should solve the problem it was designed to solve. And it should be possible to demonstrate that the algorithm converges with just a paper and pencil.

Basic Programming

Meeting Material Solution
1 Input, Output, and Variable pert1.cpp
2 Aritmethic Operation pert2.cpp
3 Selection pert3.cpp
4 Repetition pert4.cpp
5 Array and Pointer pert5.cpp
6 Function, Built-in Function pert6.cpp
7 Structures pert7.cpp
8 Sorting pert8.cpp
9 Searching pert9.cpp
10 File Operation pert10.cpp

Sort Algorithms

Bubble

alt text

From Wikipedia: Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n)
  • Average case performance O(n^2)
View the algorithm in action

Insertion

alt text

From Wikipedia: Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort. In the figure, each bar represents an element of an array that needs to be sorted. What happens at the first intersection of the top most and second top most bars is to swap these elements, represented by bars, because the second element has a higher precedence than the first element does. By repeating this method, insertion sort completes sorting.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n)
  • Average case performance O(n^2)
View the algorithm in action

Merge

alt text

From Wikipedia: In computer science, merge sort (also commonly spelt mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.

Properties

  • Worst case performance O(n log n) (typical)
  • Best case performance O(n log n)
  • Average case performance O(n log n)
View the algorithm in action

Quick

alt text

From Wikipedia: Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n log n) or O(n) with three-way partition
  • Average case performance O(n log n)
View the algorithm in action

Selection

alt text

From Wikipedia: The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.

Properties

  • Worst case performance O(n^2)
  • Best case performance O(n^2)
  • Average case performance O(n^2)
View the algorithm in action

Shell

alt text

From Wikipedia: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.

Properties

  • Worst case performance O(nlog2 2n)
  • Best case performance O(n log n)
  • Average case performance depends on gap sequence
View the algorithm in action

Time-Complexity Graphs

Comparing the complexity of sorting algorithms (Bubble Sort, Insertion Sort, Selection Sort)

Complexity Graphs


Search Algorithms

Linear

alt text

From Wikipedia: linear search or sequential search is a method for finding a target value within a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched. The linear search runs in at the worst linear time and makes at most n comparisons, where n is the length of the list.

Properties

  • Worst case performance O(n)
  • Best case performance O(1)
  • Average case performance O(n)
  • Worst case space complexity O(1) iterative

Binary

alt text

From Wikipedia: Binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.

Properties

  • Worst case performance O(log n)
  • Best case performance O(1)
  • Average case performance O(log n)
  • Worst case space complexity O(1)
View the algorithm in action

Data Structures

What is an Data Structure?

A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. Any data structure is designed to organize data to suit a specific purpose so that it can be accessed and worked with in appropriate ways. In computer programming, a data structure may be selected or designed to store data for the purpose of working on it with various algorithms.

Meeting Material Solution
1 Single Linked-List singleLinkedList.cpp
2 Double Linked-List doubleLinkedList.cpp
3 Stack stack.cpp
4 Queue queue.cpp
5 Hashing Linear Probing LinearProbing.cpp
5 Hashing Code Chaining CodeChaining.cpp
6 Binary Search Tree BST.cpp
6 AVL Tree AVL.cpp
8 Balanced Binary Tree pert3.cpp
9 Red Black Tree pert4.cpp
10 2-3 Tree pert5.cpp
11 B Tree pert5.cpp
12 Heap & Tries pert5.cpp
13 Graph pert5.cpp
View the algorithm in action

Links to the rest of the algorithms

Conversions Dynamic Programming Ciphers Miscellaneous
Any Base to Any Base Coin Change Caesar Heap Sort
Any Base to Decimal Egg Dropping Columnar Transposition Cipher Palindromic Prime Checker
Binary to Decimal Fibonacci RSA More soon...
Binary to HexaDecimal Kadane Algorithm more coming soon...
Binary to Octal Knapsack
Decimal To Any Base Longest Common Subsequence
Decimal To Binary Longest Increasing Subsequence
Decimal To Hexadecimal Rod Cutting
and much more... and more...

Data Structures

Graphs Heaps Lists Queues
BFS Empty Heap Exception Circle Linked List Generic Array List Queue
DFS Heap Doubly Linked List Queues
Graphs Heap Element Singly Linked List
Kruskals Algorithm Max Heap
CursorLinkedList
Matrix Graphs Min Heap
PrimMST
Stacks Trees
Node Stack AVL Tree
Stack of Linked List Binary Tree
Array Stack And much more...
ArrayList Stack

About

💻All Algorithms implemented in C

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 82.1%
  • Java 16.4%
  • C 1.5%