C#:实现Burrows-Wheeler变换算法(附完整源码)

C#:实现Burrows-Wheeler变换算法

using System;
using System.Linq;

namespace Algorithms.DataCompression
{
   

    public class BurrowsWheelerTransform
    {
   
        /// 
        ///     Encodes the input string using BWT and returns encoded string and the index of o

你可能感兴趣的:(C#算法完整教程,c#,算法,开发语言,数据结构)