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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:41:21+00:00 2026-05-27T15:41:21+00:00

I implemented a queue and various operations as shown below. Is there any other

  • 0

I implemented a queue and various operations as shown below. Is there any other easy method to implement queue(Circular Queue) in Java?? Which is the easiest way to implement queue in java??

import java.io.*;
import java.util.*;

public class QueueImplement {

    LinkedList<Integer> list;
    String str;
    int num;

    public static void main(String[] args) {
        QueueImplement q = new QueueImplement();
    }

    public QueueImplement() {
        try {
            list = new LinkedList<Integer>();
            InputStreamReader ir = new InputStreamReader(System.in);
            BufferedReader bf = new BufferedReader(ir);
            System.out.println("Enter number of elements : ");
            str = bf.readLine();
            if ((num = Integer.parseInt(str)) == 0) {
                System.out.println("You have entered either zero/null.");
                System.exit(0);
            } else {
                System.out.println("Enter elements : ");
                for (int i = 0; i < num; i++) {
                    str = bf.readLine();
                    int n = Integer.parseInt(str);
                    list.add(n);
                }
            }
            System.out.println("First element :" + list.removeFirst());
            System.out.println("Last element :" + list.removeLast());
            System.out.println("Rest elements in the list :");
            while (!list.isEmpty()) {
                System.out.print(list.remove() + "\t");
            }
        } catch (IOException e) {
            System.out.println(e.getMessage() + " is not a legal entry.");
            System.exit(0);
        }
    }
}
  • 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-27T15:41:22+00:00Added an answer on May 27, 2026 at 3:41 pm

    LinkedList you used already implements Queue interface.

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

Sidebar

Related Questions

Suppose we have a shared queue (implemented using an array), which two threads can
I have a Deck object (deck of cards) which is a double-ended queue implemented
Say you were writing a daemon that services a job queue. Various other software
I've Oracle Advanced Queue implemented & I'm writing a listener program. Below is my
I need to implement a FIFO queue for messages on a game server so
I'm trying to implement a Polymorphic Queue. Here is my trial: QQueue <Request *>
I am trying to implement a synchronized queue with condition variables using the boost
I have a Game framework where there is a list of Bots who implement
During my C learning days, when I had implemented a Queue , I implemented
Based on Rob Pike's load balancer demo , I implemented my own priority queue,

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.