17 lines
352 B
C#
17 lines
352 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HuffmanCode
|
||
{
|
||
internal class Node
|
||
{
|
||
public string Сharacter { get; set; }
|
||
public int Count { get; set; }
|
||
public Node? Left { get; set; }
|
||
public Node? Right { get; set; }
|
||
}
|
||
}
|