Skip to content

Releases: edualgo/eduAlgo

Winter Release #1

27 Nov 15:38
da92be4
Compare
Choose a tag to compare

In this release, few new things have been added

  • bogo_sort, merge_sort, heap_sort, quick_sort
  • one greedy algorithm
  • linear_serach, interpolation_search, binary_search
  • stacks (Unstable)
  • queue (Unstable)

v1.1.6 Alpha

12 Sep 14:33
Compare
Choose a tag to compare

There is a new feature known as Algorithm Hints

  • added algorithm hint method for bubble sort
  • added algorithm hint method for selection sort
  • added string algorithm hint method for isUnique() method
  • added string algorithm hint method for isPermutation() method
  • string algorithm hint method for URLify() method

v1.1.5 Alpha

27 Aug 13:56
Compare
Choose a tag to compare

Added the below implementations based on the string/array algorithms,

  • Check a string is made up of unique characters
  • Check if one string is a permutation of the other
  • URLify the given string with a key
  • Check if a string is a permutation of a palindrome
  • Check if two strings are one Edit away
  • Compress a string in a fashion
  • Rotate a matrix in clockwise direction

v1.1.4 Alpha

19 Aug 05:19
Compare
Choose a tag to compare

In this release, the package has got the following new methods,

  • Binary Tree module introduced
  • Added the following implementations of the binary tree:
    • Printing the binary tree
    • Sum of binary tree nodes in a range
    • Merge two binary trees
    • Checking if two trees are the same

v1.1.2 LinkedList

13 Aug 02:13
Compare
Choose a tag to compare

Added the following implementations,

  • Getting the intersection node between two linked lists
  • Given the binary representation of an integer, return the decimal value
  • Given a linked list, find the next larger nodes

v1.1.1 - Linked List

09 Aug 04:36
Compare
Choose a tag to compare

Added some documentation

Linked List Implementations

09 Aug 04:19
Compare
Choose a tag to compare

The following algorithms have been implemented,

  • Module Name : LinkedList
    • Palindromic Linked List -
    • Remove Linked List Elements -
    • Remove Duplicates From a Sorted List -
    • Merge Two Sorted List -
    • Reverse Linked List -
    • Delete Node In a Linked List -
    • Middle Of the Linked List -

Doc Updated

08 Aug 16:41
Compare
Choose a tag to compare

The documentation for the package has been modified and added to the repository.

v1.0.1 - Planning Version

07 Aug 05:14
a6d01c3
Compare
Choose a tag to compare

The planning version of the eduAlgo package which contains the following,

  • installation guide
  • two simple sorting algorithms