1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

refractor(container/gtree): refactor code with gods package for rbtree (#3655)

This commit is contained in:
oldme 2024-07-02 20:36:43 +08:00 committed by GitHub
parent 2565bb3d07
commit 3e54839aa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 269 additions and 688 deletions

File diff suppressed because it is too large Load Diff

View File

@ -592,6 +592,11 @@ func ExampleRedBlackTree_IteratorAscFrom_NoExistKeyAndMatchFalse() {
})
// Output:
// key: 1 , value: 10
// key: 2 , value: 20
// key: 3 , value: 30
// key: 4 , value: 40
// key: 5 , value: 50
}
func ExampleRedBlackTree_IteratorDesc() {