-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from emirpasic/development
Development
- Loading branch information
Showing
6 changed files
with
1,407 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,22 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
------------------------------------------------------------------------------- | ||
|
||
AVL Tree: | ||
|
||
Copyright (c) 2017 Benjamin Scher Purcell <[email protected]> | ||
|
||
Permission to use, copy, modify, and distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright (c) 2015, Emir Pasic. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package examples | ||
|
||
import ( | ||
"fmt" | ||
avl "github.com/emirpasic/gods/trees/avltree" | ||
) | ||
|
||
// AVLTreeExample to demonstrate basic usage of AVLTree | ||
func AVLTreeExample() { | ||
tree := avl.NewWithIntComparator() // empty(keys are of type int) | ||
|
||
tree.Put(1, "x") // 1->x | ||
tree.Put(2, "b") // 1->x, 2->b (in order) | ||
tree.Put(1, "a") // 1->a, 2->b (in order, replacement) | ||
tree.Put(3, "c") // 1->a, 2->b, 3->c (in order) | ||
tree.Put(4, "d") // 1->a, 2->b, 3->c, 4->d (in order) | ||
tree.Put(5, "e") // 1->a, 2->b, 3->c, 4->d, 5->e (in order) | ||
tree.Put(6, "f") // 1->a, 2->b, 3->c, 4->d, 5->e, 6->f (in order) | ||
|
||
fmt.Println(tree) | ||
// | ||
// AVLTree | ||
// │ ┌── 6 | ||
// │ ┌── 5 | ||
// └── 4 | ||
// │ ┌── 3 | ||
// └── 2 | ||
// └── 1 | ||
|
||
_ = tree.Values() // []interface {}{"a", "b", "c", "d", "e", "f"} (in order) | ||
_ = tree.Keys() // []interface {}{1, 2, 3, 4, 5, 6} (in order) | ||
|
||
tree.Remove(2) // 1->a, 3->c, 4->d, 5->e, 6->f (in order) | ||
fmt.Println(tree) | ||
// | ||
// AVLTree | ||
// │ ┌── 6 | ||
// │ ┌── 5 | ||
// └── 4 | ||
// └── 3 | ||
// └── 1 | ||
|
||
tree.Clear() // empty | ||
tree.Empty() // true | ||
tree.Size() // 0 | ||
} |
Oops, something went wrong.