NguyenHuyHao CK

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

1)

2.
3)
Function duyetNLR(node):
if node is not null then
// 1. Duyệt node hiện tại
InRa(node.value)

// 2. Duyệt node trái


duyetNLR(node.left)

// 3. Duyệt node phải


duyetNLR(node.right)
end if
end function

You might also like