hafman
This commit is contained in:
parent
1ec86abc60
commit
c6630a3cf7
@ -5,7 +5,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace ЛР_2._0
|
namespace HuffmanCode
|
||||||
{
|
{
|
||||||
internal class Algoritm
|
internal class Algoritm
|
||||||
{
|
{
|
||||||
|
@ -8,7 +8,7 @@ namespace HuffmanCode
|
|||||||
{
|
{
|
||||||
internal class Node
|
internal class Node
|
||||||
{
|
{
|
||||||
public string Сharacter { get; set; }
|
public string Character { get; set; }
|
||||||
public int Count { get; set; }
|
public int Count { get; set; }
|
||||||
public Node? Left { get; set; }
|
public Node? Left { get; set; }
|
||||||
public Node? Right { get; set; }
|
public Node? Right { get; set; }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using ЛР_2._0;
|
using HuffmanCode;
|
||||||
|
|
||||||
Console.WriteLine("Please enter the string:");
|
Console.WriteLine("Please enter the string:");
|
||||||
string data = Console.ReadLine();
|
string data = Console.ReadLine();
|
||||||
|
Loading…
Reference in New Issue
Block a user