Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wellFormedSubtree (0.11 sec)

  1. src/cmd/compile/internal/abt/avlint32_test.go

    // with expected.
    func (t *T) wellFormed() (s string, i int) {
    	if t.root == nil {
    		s = ""
    		i = 0
    		return
    	}
    	return t.root.wellFormedSubtree(nil, -0x80000000, 0x7fffffff)
    }
    
    // wellFormedSubtree ensures that a red-black subtree meets
    // all of its invariants and returns a string identifying
    // the first problem encountered. If there is no problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top