pygorithm

A Python module for learning all major algorithms

MIT License

Downloads
2.7K
Stars
4.4K
Committers
31

Bot releases are hidden (Show)

pygorithm - Added more modules and bug fixes with clean documentation Latest Release

Published by OmkarPathak about 7 years ago

Added modules such as:

  • binary: Base conversion implementations of base2, base10, base16 and ASCII
  • dynamic_programming: Implementations of binary knapsack and longest increasing subsequence
  • greedy_algorithm: Implementations of activity selection problem and fractional knapsack
  • geometry
pygorithm - Bug Fixes and addition of new modules

Published by OmkarPathak about 7 years ago

This release contains following modules and their respective implementations:

  • Math - Added LCM, Factorial, various conversions, sieve of eratostenes
  • Path finding - Added Dijkstra's algorithm, astar
  • String - Added palindrome, pangram, anagram and isogram implementations
  • Searching - Added implementation of interpolation search
  • Data Structures - Added implementation of trie
pygorithm - First stable release

Published by OmkarPathak about 7 years ago

This release contains following modules and their respective implementations:

  • Data Structures
  • Searching
  • Sorting
  • Various implementations for Fibonacci Series