Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: trekhleb/javascript-algorithms
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: SHISME/javascript-algorithms
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 20, 2019

  1. Copy the full SHA
    60393e9 View commit details
Showing with 27 additions and 2 deletions.
  1. +10 −2 src/data-structures/tree/avl-tree/AvlTree.js
  2. +17 −0 src/data-structures/tree/avl-tree/__test__/AvlTRee.test.js
12 changes: 10 additions & 2 deletions src/data-structures/tree/avl-tree/AvlTree.js
Original file line number Diff line number Diff line change
@@ -64,7 +64,11 @@ export default class AvlTree extends BinarySearchTree {

// Make left node to be a child of rootNode's parent.
if (rootNode.parent) {
rootNode.parent.setLeft(leftNode);
if (rootNode.parent.left === rootNode) {
rootNode.parent.setLeft(leftNode);
} else {
rootNode.parent.setRight(leftNode);
}
} else if (rootNode === this.root) {
// If root node is root then make left node to be a new root.
this.root = leftNode;
@@ -145,7 +149,11 @@ export default class AvlTree extends BinarySearchTree {

// Make right node to be a child of rootNode's parent.
if (rootNode.parent) {
rootNode.parent.setRight(rightNode);
if (rootNode.parent.left === rootNode) {
rootNode.parent.setLeft(rightNode);
} else {
rootNode.parent.setRight(rightNode);
}
} else if (rootNode === this.root) {
// If root node is root then make right node to be a new root.
this.root = rightNode;
17 changes: 17 additions & 0 deletions src/data-structures/tree/avl-tree/__test__/AvlTRee.test.js
Original file line number Diff line number Diff line change
@@ -230,6 +230,23 @@ describe('AvlTree', () => {
expect(tree.root.height).toBe(3);
});

it('should do right right rotation and keeping left node safe', () => {
const tree = new AvlTree();
tree.insert(24);
tree.insert(12);
tree.insert(34);
tree.insert(15);

expect(tree.toString()).toBe('12,15,24,34');

tree.insert(18);
expect(tree.toString()).toBe('12,15,18,24,34');
expect(tree.root.height).toBe(2);
expect(tree.root.left.value).toBe(15);
expect(tree.root.left.left.value).toBe(12);
expect(tree.root.left.right.value).toBe(18);
});

it('should remove values from the tree with right-right rotation', () => {
const tree = new AvlTree();