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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:24:17+00:00 2026-05-27T19:24:17+00:00

How can I find an object in Vector that contains the biggest number of

  • 0

How can I find an object in Vector that contains the biggest number of elements?
For instance:

int[] val1 = {1,2,3};
int[] val2 = {1};
int[] val3 = {1,2};
Vector<Object> d = new Vector<Object>();  // update
c.add(val1);
c.add(val2);
c.add(val3);
int answ = findBiggest(c);

In this example, answ should be equal to 0, because val1 contains 3 numbers.

  • 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-27T19:24:18+00:00Added an answer on May 27, 2026 at 7:24 pm

    I have answered this by taking the liberty of changing the datatype to arraylist, which I believe is what you originally wanted..

    I also changed the generic type to Integer[] too. Because I believe there is an overhead associated with autoboxing, which I guess is minimal but good practice? (Can anyone confirm this?)

    public static void main(String[] args) {
        Integer[] val1 = {1,2,3};
        Integer[] val2 = {1,2,3,3,3};
        Integer[] val3 = {1,2};
        ArrayList<Integer[]> c = new ArrayList<Integer[]>(); 
        c.add(val1);
        c.add(val2);
        c.add(val3);
        int answ = findBiggest(c);
        System.out.println(answ);
    }
    
    public static int findBiggest(ArrayList<Integer[]> list){
        int biggestSize = 0
        int biggestPos = -1;
        int i = 0;
        for(Integer[] el : list){
            if(el.length >= biggestSize){
                biggestSize = el.length;
                biggestPos = i;
            }
            i++;
        }
    
        return biggestPos;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a LinkedList that contains many objects. How can I find the number
Where can I find the IIS object schema? All I found from MSDN was
Can anyone tell me how I can find out if an SPField object is
How can I find out the date a MS SQL Server 2000 object was
i get a valid fd object from a caller. How can i find out
How do I create an xts object whose indexes include milliseconds? I can't find
Can I always assume that if... int main() { ... foo1(); foo2(); foo3(); ...
Is there any way that I can find the container pointed to by an
I'm trying to find a certain object in a Vector of object pointers. Lets
How can I find out how many objects are created of a class in

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.