tailieunhanh - Giáo trình cấu trúc dữ liệu part 6

Tham khảo tài liệu 'giáo trình cấu trúc dữ liệu part 6', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Cấu trúc dữ liệu Ch ương III Cấu trúc cây Xác định nút cha của nút trên cây Node Parent Node n Tree T if EmptyTree T n return NIL else return n Xác định nhãn của nút trên cây DataType Label_Node Node n Tree T if EmptyTree T n return n Hàm xác định nút gốc trong cây Node Root Tree T if EmptyTree T return 0 else return NIL Hàm xác định con trái nhất của một nút Node LeftMostChild Node n Tree T Node i int found if n 0 return NIL i n 1 Vị trí nút đầu tiên hy vọng là con của nút n found 0 while i found if i n found 1 Đã tìm thấy con trái nhất của nút n Trang 81 Cấu trúc dữ liệu Ch ương III Cấu trúc cây else i i 1 if found return i else return NIL Hàm xác định anh em ruột phải của một nút Node RightSibling Node n Tree T Node i parent int found if n 0 return NIL parent n i n 1 found 0 while i found if i parent found 1 else i i 1 if found return i else return NIL Thủ tục duyệt tiền tự void PreOrder Node n Tree T Node i printf c Label_Node n T i LeftMostChild n T while i NIL PreOrder i T i RightSibling i T Trang 82 Cấu trúc dữ liệu Ch ương III Cấu trúc cây Thủ tục duyệt trung tự void InOrder Node n Tree T Node i i LeftMostChild n T if i NIL InOrder i T printf c Label_Node n T i RightSibling i T while i NIL InOrder i T i RightSibling i T Thủ tục duyệt hậu tự void PostOrder Node n Tree T Node i i LeftMostChild n T while i NIL PostOrder i T i RightSibling i T printf c Label_Node n T Trang 8

TỪ KHÓA LIÊN QUAN