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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:57:08+00:00 2026-06-01T03:57:08+00:00

Well, this might be a silly problem. I just want a faster implementation of

  • 0

Well, this might be a silly problem.

I just want a faster implementation of following problem

I want to take three integer input in a single line eg:

10 34 54

One way is to make a BufferedReader and then use readLine()
which will read the whole line as a string
then we can use StringTokenizer to separate three integer. (Slow implemetation)

Another way is to use ‘Scanner’ and take input by nextInt() method. (Slower than previous method)

I want a fast implementation to take such type of inputs since I have to read more than 2,000,000 lines and these implementations are very slow.

My implementation:

BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

for(i=0;i<n;i++) {
    str=br.readLine();
    st = new StringTokenizer(str);
    t1=Integer.parseInt(st.nextElement().toString());
    t2=Integer.parseInt(st.nextElement().toString());
    z=Long.parseLong(st.nextElement().toString());
}

This one is looped for n times. ( n is number of entries)
Since I know each line will contain only three integer there is no need to check for hasMoreElements()

  • 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-01T03:57:09+00:00Added an answer on June 1, 2026 at 3:57 am

    I just want a faster implementation of following problem.

    The chances are that you DON’T NEED a faster implementation. Seriously. Not even with a 2 million line input file.

    The chances are that:

    • more time is spent processing the file than reading it, and
    • most of the “read time” is spent doing things at the operating system level, or simply waiting for the next disk block to be read.

    My advice is to not bother optimizing this unless the application as a whole takes too long to run. And when you find that this is the case, profile the application, and use the profile stats to tell you where it could be worthwhile spending effort on optimization.

    (My gut feeling is that there is not much to be gained by optimizing this part of your application. But don’t rely on that. Profile it!)

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

Sidebar

Related Questions

this might be a silly question, but well. I have the following code that
I'm trying to reuse methods in DataMapper classes. This might be as well a
I think that asking this might be kind of silly but I'm still wondering
Well this question might look simillar to questions easily findable with google but for
This might be a basic CSS question: I have a site designed with well-defined
This might seem a bit awkward but I want to start a console program
Well been working for hours today so i might be missing something silly, but,
This might seem like a silly question, but after asking some questions on stackoverflow
This might be a problem with my understanding with Curses more than with Perl,
this might sound like a stupid question, but i want to clarify a concept:

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.