https://github.com/pharo-containers/Container-AVL
AVL Tree from Roassal 3
https://github.com/pharo-containers/Container-AVL
Last synced: 26 days ago
JSON representation
AVL Tree from Roassal 3
- Host: GitHub
- URL: https://github.com/pharo-containers/Container-AVL
- Owner: pharo-containers
- License: mit
- Created: 2022-09-03T18:47:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-16T23:35:52.000Z (about 2 months ago)
- Last Synced: 2025-04-17T12:11:01.480Z (about 2 months ago)
- Language: Smalltalk
- Size: 66.4 KB
- Stars: 4
- Watchers: 7
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - AVL Tree
README
# AVL
[](https://github.com/pharo-containers/AVL/actions/workflows/runTests.yml)
AVL Tree migration from Roassal 3. A work in progress since it should be packaged to follow project conventions.
## How to install it
To install `AVL`, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
```st
Metacello new
baseline: 'ContainersAVLTree';
repository: 'github://pharo-containers/Container-AVL:main';
load
```## How to depend on it
If you want to add a dependency on `linear-models` to your project, include the following lines into your baseline method:
```st
spec
baseline: 'ContainersAVLTree'
with: [ spec repository: 'github://pharo-containers/Container-AVL' ].
```