Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3427466
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:50:23+00:00 2026-05-18T06:50:23+00:00

I want to implement a Generic Tree in java and i want to use

  • 0

I want to implement a Generic Tree in java and i want to use a single table for the same.where the structure of the table is as below.

public class MyTreeNode {    
  private int id;    
  private int parentId;    
  private MyTreeNode parent;   
  private List<MyTreeNode> childNodes;   
  // further fields..  
}
NAME OF TABLE IS **TREE_TABLE**  
PK_ID       | PARENT  
----------  |----------  
1           | null  
2           | 1  
3           | 1  
4           | 2

Meaning, the nodes with PK_ID 2 and 3 have node 1 as parent, 4 has 2 as parent, and 1 has no parent (null).

how to implement this in Java code.Any sample code if you have for this or if you can share the code,Please Share it across.

Requirement: Access the above table from underlyng SQL server database and rebuild the tree structure such that the relationship between Parent and Child are set.

Regards
Deepak

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T06:50:24+00:00Added an answer on May 18, 2026 at 6:50 am

    Put all your Nodes in an arrayList, created by order. This algorithm assumes the get the table rows by order of PK_ID.

    nodes = emptyArrayList
    
    for each row in your table:
       node n = new Node(PK_ID)
       nodes.add(n)
       if (PARENT != null)
           nodes.get(PARENT).addChild(n)
    

    after that, nodes[0] is the root of your tree. I’m not going to show you how to create a tree data structure.

    EDIT: about the tree

    As for your tree, each node should only know about the nodes under it, not above. So your parent id and parent node fields aren’t needed. Otherwise, it looks good.

    EDIT: More about your tree structure:

    As I said, your tree structure is fine. It can just be a class with an id and the list of children nodes. That’s all you need.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to implement in Java a class for handling graph data structures. I
I want to implement a generic, thread save class which takes the RessourceId of
I want to implement a paperless filing system and was looking to use WIA
I want to implement a simple debug log, which consists of a table into
I just finish to implement a generic skip list in C++ an I want
I am trying to implement a generic Wrapper-Class for Qt's class system using C#'s
I'm using some code from a book to implement a generic repository class for
I want to implement search functionality for a website (assume it is similar to
I want to implement an automatic update system for a windows application. Right now
I want to implement a two-pass cache system: The first pass generates a PHP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.