Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minhaskamal/algorithmimplementations
Implementation of Elementary Algorithms (infix-prefix-postfix-evaluation-to-longest-common-increasing-sub-sequence-activity-selection-balance-kd-binary-heap-binomial-tree-breath-depth-first-search-max-flow-shortest-path-topological-sort-calculus-derivative-integration-forward-interpolation-simpson-rule-intersecting-area-non-linear-equation-jacobis-gauss-seidal-bisection-false-position-newton-raphson-fixed-point-secant-cigarette-smokers-genetic-huffman-a-a*-star-binary-knuth-morris-pratt-kmp-quick-thread-priority-based-premitive-shortest-job-non-primitive-arithmetic-expression-data-structures-list-node-implementation-one-two-way-linked-stack-string-graph-numerical-methods-equation-solving-solve-process-problem-search-sort-prime-ugly-friend-perfect-fibonacci-factorial-factor-number)
https://github.com/minhaskamal/algorithmimplementations
a-star algorithm algorithms assembly c c-plus-plus factor factorial fibonacci-numbers friend-number genetic-algorithm graph huffman java prime-numbers sort tree
Last synced: about 10 hours ago
JSON representation
Implementation of Elementary Algorithms (infix-prefix-postfix-evaluation-to-longest-common-increasing-sub-sequence-activity-selection-balance-kd-binary-heap-binomial-tree-breath-depth-first-search-max-flow-shortest-path-topological-sort-calculus-derivative-integration-forward-interpolation-simpson-rule-intersecting-area-non-linear-equation-jacobis-gauss-seidal-bisection-false-position-newton-raphson-fixed-point-secant-cigarette-smokers-genetic-huffman-a-a*-star-binary-knuth-morris-pratt-kmp-quick-thread-priority-based-premitive-shortest-job-non-primitive-arithmetic-expression-data-structures-list-node-implementation-one-two-way-linked-stack-string-graph-numerical-methods-equation-solving-solve-process-problem-search-sort-prime-ugly-friend-perfect-fibonacci-factorial-factor-number)
- Host: GitHub
- URL: https://github.com/minhaskamal/algorithmimplementations
- Owner: MinhasKamal
- License: mit
- Created: 2015-12-13T08:36:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-30T08:05:20.000Z (over 6 years ago)
- Last Synced: 2023-10-20T21:49:24.386Z (about 1 year ago)
- Topics: a-star, algorithm, algorithms, assembly, c, c-plus-plus, factor, factorial, fibonacci-numbers, friend-number, genetic-algorithm, graph, huffman, java, prime-numbers, sort, tree
- Language: C++
- Homepage: http://minhaskamal.github.io/AlgorithmImplementations
- Size: 362 KB
- Stars: 70
- Watchers: 11
- Forks: 59
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithm Implementations
#### Implementation of Elementary AlgorithmsThe project contains algorithms that were implemented in my Data Structure & Algorithms course. Yes, I got marks for those. :P
### Categorical List of Algorithms
AlgorithmImplementations
├─ arithmeticExpressions
│ ├─ InfixEvaluation
│ ├─ InfixToPostfix
│ ├─ InfixToPrefix
│ ├─ PostfixEvaluation
│ └─ PrefixEvaluation
├─ dataStructures
│ ├─ listImplementation
│ │ ├─ implementationUsingNode
│ │ │ ├─ OneWayLinkedList
│ │ │ └─ TwoWayLinkedList
│ │ ├─ OneWayLinkedList
│ │ └─ TwoWayLinkedList
│ ├─ stack
│ │ ├─ StackImplementation
│ │ └─ StackImplementation
│ ├─ string
│ │ ├─ String
│ │ ├─ StringLongestCommonSubSecuence
│ │ └─ StringLongestIncreasingSubSecuence
│ └─ tree
│ ├─ ActivitySelection
│ ├─ BalanceTree
│ ├─ KdTree
│ ├─ BinaryHeap
│ └─ BinomialTree
├─ graph
│ ├─ BreathFirstSearch
│ ├─ DepthFirstSearch
│ ├─ MaxFlow
│ ├─ ShortestPathAlgorithm
│ └─ TopologicalSort
├─ numericalMethods
│ ├─ calculus
│ │ ├─ DerivetivesOnDifferentPoints
│ │ ├─ IntegrationForwardInterpolation
│ │ ├─ IntegrationSimpsonRule
│ │ └─ IntersectingArea
│ └─ equationSolving
│ ├─ LinearEquationSolvingProcess
│ │ ├─ JacobisMethod
│ │ └─ GaussSeidalMethod
│ └─ NonLinearEquationSolvingProcess
│ ├─ BisectionMethod
│ ├─ FalsePosition
│ ├─ NewtonRaphson
│ ├─ FixedPoint
│ └─ Secant
├─ others
│ ├─ cigaretteSmokersProblem
│ ├─ geneticAlgorithm
│ └─ huffmanAlgorithm (¿) (~)
├─ search
│ ├─ AStarSearch
│ ├─ BinarySearch
│ └─ KnuthMorrisPrattAlgorithm
├─ sort
│ └─ QuickSort
├─ thread
│ ├─ priorityBased
│ │ ├─ nonpreemptive
│ │ └─ preemptive
│ └─ shortestJob
│ ├─ nonpreemptive
│ └─ preemptive
└─ playWithNumbers
├─ factorial
│ ├─ BigFactorials
│ ├─ DigitsOfFactorial
│ └─ FactorsOfFactorial
├─ fibonaciiNumber
│ ├─ FibonaciiNumber
│ ├─ FibonaciiSerise
│ └─ FibonaciiSum
├─ otherNumbers
│ ├─ FriendNumbers
│ └─ PerfectNumberHaunting
├─ pascalTriangle
│ ├─ BetterPascalTriangle
│ ├─ EasyPascalTriangle
│ ├─ PascalTriangle
│ ├─ Piramid
│ └─ RealPascalTriangle
├─ primeNumber (Scrt Chmbr)
│ ├─ AnotherWayOfPrimeNumberHaunting
│ ├─ DefinitePrimeNumberHaunting
│ ├─ Factors
│ ├─ GreatPrimeNumberHaunting
│ ├─ GreatestPrimeNumberHaunting
│ ├─ PrimeNumber
│ ├─ PrimeNumberHaunting
│ └─ PrimeNumberHaunting
└─ time
├─ AgeCalculator
├─ LeapYearCounter
├─ Stopwatch
└─ TimeAfter### License
Algorithm Implementations is licensed under MIT License.