Chào Mọi người, buổi tối vui vẻ ạ 
Em đang làm bài tập về mã hóa Huffman. Em viết bằng C#.
Mục đích là tạo ra một cây, sao cho các nút có trọng số(tần xuất xuất hiện của ký tự) nhỏ nhất sẽ ở xa gốc nhất.
Code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
using Init;
namespace Init1
{
class Program
{
public static Node CreatCay(int n){
int dem = 0;
int i = 0;
SortedList sl = new SortedList();
while (dem < n)
{
Console.WriteLine("Nhap vao phan ki tu thu {0}: ", i + 1);
char c = char.Parse(Console.ReadLine());
Console.WriteLine("Nhap vap tan xuat cua phan tu thu {0}: ", i + 1);
int x = int.Parse(Console.ReadLine());
Node Cay = new Node(c, x, null, null);
sl.Add(x, Cay);
Cay.clear();
dem += x;
i
}
Node iNIT = new Node();
while (sl.Count != 1) {
if (sl.GetByIndex(i) is Node && sl.GetByIndex(i+1) is Node)
{
iNIT.Left = (Node)sl.GetByIndex(i);
iNIT.Right = (Node)sl.GetByIndex(i);
}
sl.RemoveAt(i); sl.RemoveAt(i + 1);
iNIT.clear();
}
if (sl.Count == 1) { iNIT = (Node)sl.GetByIndex(0); };
return iNIT;
}
static void Main(string[] args)
{
Node root = CreatCay(50);
Console.ReadLine();
}
}
}
Class Node:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Init
{
public class Node
{
private Node right_;
private Node left_;
private char data_;
private int tanxuat_;
public Node(){}
public Node(char d, int t, Node pl, Node pr)
{
data_ = d;
tanxuat_ = t;
right_ = pr;
left_ = pl;
}
public char Data
{
get
{
return data_;
}
set
{
data_ = value;
}
}
public int TanXuat
{
get
{
return tanxuat_;
}
set
{
tanxuat_ = value;
}
}
public Node Left
{
get { return left_; }
set { left_= value; }
}
public Node Right
{
set { right_ = value; }
get { return right_; }
}
public void clear()
{
this.Data = char.MinValue;
this.TanXuat = int.MinValue;
this.left_ = null;
this.right_ = null;
}
public static bool operator >(Node p, Node q){
return (p.tanxuat_ > q.tanxuat_);
}
public static bool operator <(Node p, Node q)
{
return (p.tanxuat_ < q.tanxuat_);
}
}
}
Khi em thực hiện debug thì gặp phải lỗi như thế này:
Mọi người ai biết về lỗi này, chỉ giúp em với ạ.
Em cảm ơn ạ.


83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?