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 8119165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T04:43:32+00:00 2026-06-06T04:43:32+00:00

I would like to know how to create a linked list of linked lists.

  • 0

I would like to know how to create a linked list of linked lists. Also, It would be helpful if the predefined LinkedList (class from Java) and its methods are used for defining and for other add, get, listIterating operations.

  • 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-06-06T04:43:33+00:00Added an answer on June 6, 2026 at 4:43 am

    You can put any object in a list, including another list.

    LinkedList<LinkedList<YourClass>> list = new LinkedList<LinkedList<YourClass>>();
    

    is a LinkedList of LinkedLists of YourClass objects. It can also be written in a simplified way since Java 7:

    LinkedList<LinkedList<YourClass>> list = new LinkedList<>();
    

    Very simple examples of manipulating such a list:

    You then need to create each sublist, here adding a single sublist:

    list.add(new LinkedList<YourClass>());
    

    Then create the content objects:

    list.get(sublistIndex).add(new YourClass());
    

    You can then iterate over it like this (sublists’ items are grouped by sublist):

    for(LinkedList<YourClass> sublist : list) {
        for(YourClass o : sublist) {
            // your code here
        }
    }
    

    If you want to add specific methods to this list of lists, you can create a subclass of LinkedList (or List, or any other List subclasses) or you can create a class with the list of lists as a field and add methods there to manipulate the list.

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

Sidebar

Related Questions

I would like to create a circular/cyclic linked list where the tail of the
i would like to know how to create a hidden type input box and
I would like to know how to create a computed observable array. In my
I would like to know how to create a php function that can be
I would like to know how to create a rounded corners on a table
Hi I would like to know how to create a dll that is written
I'm an amateur web developer and I would like to know how to create
I would like to know how can I create a regexp to match the
I would like to know a way to create an XML file using MySQL
I would like to know if there is a method to create share buttons

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.