Coder Social home page Coder Social logo

Comments (4)

intern0t avatar intern0t commented on May 4, 2024

It should be relevant, it is setting a delimiter whether to continue, fall back or if nodeToRemove is actually the last one. The question about whether it must be null depends on the properties left and right. If right is null, that means there are no nodes beyond the current one, nodeToRemove and is the last one.

Sorry, if I am not clear enough.

from javascript-algorithms.

m-maksyutin avatar m-maksyutin commented on May 4, 2024

Thanks for the explanation, @intern0t .

For clarity, please specify these things:

Should these properties of the returned object correspond to the tree state before the node is deleted or after?

For example, is it correct to change the right property here?

Same question to the value property:


Also, if you add this check to the BinarySearchTreeNode.test.js, it will fail:

it('should return removed node containing a value that should have been deleted', () => {
  const bstRootNode = new BinarySearchTreeNode();
  bstRootNode.insert(10);
  bstRootNode.insert(20);
  bstRootNode.insert(30);
  bstRootNode.insert(15);

  const removedNode1 = bstRootNode.remove(20);
  expect(removedNode1.value).toBe(20);
});

from javascript-algorithms.

rakshithjk avatar rakshithjk commented on May 4, 2024

I think that properties of the returned object correspond to the tree state before the node is deleted.

110. nodeToRemove.value = nodeToRemove.right.value;

You have changed the value of nodeToRemove with the value that has to be replaced (in the example you have mentioned, 30).Now when you return nodeToRemove.value it would return 30 whereas 20 was expected. Instead return parent

from javascript-algorithms.

trekhleb avatar trekhleb commented on May 4, 2024

Yes, you right @m-maksyutin, there is an uncertainty in removal method. To avoid similar confusion I've changed the code so that removal method will return boolean (whether node has been successfully deleted or not). Because returning the node truly brings confusion about its value, left, right and parent properties.

from javascript-algorithms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.