You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
namespace WhiteRabbit
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
|
|
/// <summary>
|
|
/// Converts strings to vectors containing chars count, based on a source string.
|
|
/// E.g. for source string "abc", string "a" is converted to [1, 0, 0], while string "bcb" is converted to [0, 2, 1].
|
|
/// </summary>
|
|
internal class VectorsConverter
|
|
{
|
|
public VectorsConverter(byte[] sourceString)
|
|
{
|
|
var rawNumberOfOccurrences = sourceString.GroupBy(ch => ch).ToDictionary(group => group.Key, group => group.Count());
|
|
this.IntToChar = rawNumberOfOccurrences.OrderBy(kvp => kvp.Key).Select(kvp => kvp.Key).ToArray();
|
|
this.CharToInt = Enumerable.Range(0, this.IntToChar.Length).ToDictionary(i => this.IntToChar[i], i => i);
|
|
}
|
|
|
|
private Dictionary<byte, int> CharToInt { get; }
|
|
|
|
private byte[] IntToChar { get; }
|
|
|
|
public Vector<byte>? GetVector(byte[] word)
|
|
{
|
|
if (word.Any(ch => !this.CharToInt.ContainsKey(ch)))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var arr = new byte[16];
|
|
foreach (var ch in word)
|
|
{
|
|
arr[this.CharToInt[ch]]++;
|
|
}
|
|
|
|
return new Vector<byte>(arr);
|
|
}
|
|
|
|
public string GetString(Vector<byte> vector)
|
|
{
|
|
return new string(Enumerable.Range(0, this.IntToChar.Length).SelectMany(i => Enumerable.Repeat((char)this.IntToChar[i], vector[i])).ToArray());
|
|
}
|
|
}
|
|
}
|
|
|