python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why my Circular Singly Linked List Java code not working? It says that Node is null can't put data on it
For the meantime, I'm trying to figure out the basics of how Circular Singly Linked List works. In this case, I'm creating a program in which, user can input from 1 to 3, the number of linked nodes. H...
fahis23
Votes: 0
Answers: 1
how to pass parameter from one page function to another page class function in Javascript / Node js
I want to pass parameter from my app.js page to another page User.js which contain class function but all I am getting is undefined value. I am trying to pass selected choice from the inqurier but its...
Aakash
Votes: 0
Answers: 1
Why are all of the nodes that I add to different lists ends up in one list?
I have two classes, RectNode and RectList. The assignment is to create a list of rectangles (with another class called RectangleA). When I use the tester it seems like all of the nodes are added to th...
Michael_fr
Votes: 0
Answers: 1
How to find a parent node using recursion
I have an class like this:
public class Entity
{
public Entity()
{
ChildEntities = new List<Entity>();
}
public int Name { get; set; }
public string ParentNode { get; set; }
...
Mr_Happy
Votes: 0
Answers: 1