python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Java Filter list object with Recursive Children
Given this obj.
public class Menu {
private String id;
private String matchCode;
private List<Menu> children;
//getters and setters
/**
* Flattened funcition to recursive children list
...
Kevin Valdez
Votes: 0
Answers: 1
For loop is not working inside recursive function
1.I have a use case where i want the parent to be made false if any last child "isSelected" is true. For example the id 4 isSelcted is true so the parents of 4 are 3,2,1 whose key "coll...
Srujan R
Votes: 0
Answers: 1
How to find indexes of elements in recursive-knapsack?
I'm trying to implement recursive Knapsack which would return 2 things:
Max value we get by filling knapsack.
Indexes of the elements considered for filling the knapsack.
Please note that I don't wa...
Jatin
Votes: 0
Answers: 2
Given a kd tree-like grid, how to find two nearest intersecting lines
Say I have a grid structure like the image here:
Give point D, I want to find the nearest points whose line intersects with the line created by D.
I need a way to find C and E, but not A or B.
A is n...
Knoland
Votes: 0
Answers: 1