This commit is contained in:
Антон Скалкин 2023-04-27 16:15:28 +04:00
parent 1ec86abc60
commit c6630a3cf7
3 changed files with 3 additions and 3 deletions

View File

@ -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
{ {

View File

@ -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; }

View File

@ -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();