MIPS - implementing a binary search tree
问题 As our term project, we're implementing a binary search tree. The thought behind it is as follows: Assume a bst with 3 nodes: 10 / \ / \ 8 14 Its address representation is as follows (value, left node address, right node address, root node address)t: 400:|----------| | 8 | |----------| | 0 | |----------| | 0 | |----------| | 620 | |----------| | . | | . | | . | $a0=620:|----------| | 10 | |----------| | 400 | |----------| | 1000 | |----------| | 0 | |----------| | . | | . | | . | 1000:|------