codezonediitj / pydatastructs

A python package for data structures and algorithms
https://pydatastructs.readthedocs.io/en/stable/
Other
201 stars 267 forks source link

Burrows Wheeler transform Algorithm #389

Closed U-c0de closed 3 years ago

U-c0de commented 3 years ago

Description of the problem

Description -> Implement and add Burrows Wheeler transform algorithm in Python Burrows Wheeler Transform(BWT): BWT is a string compression algorithm that can be used to simply encrypt strings just by cyclic operations. It is used in zip format files, Linux, Internet Protocols to even research.

Example of the problem

Input: text = “banana$” Output: Burrows- Wheeler Transform = “annb$aa”

U-c0de commented 3 years ago

Assign me this @czgdp1807