Getting tied values from arraylist
An updated version with original condition.
A method called getMost that takes a single integer parameter and returns
an ArrayList of Personality objects. You may assume that the
parameter’s value will be greater-than or equal-to 0 but it might be greater
than the number of items in the Competition object’s list.
This method must return an ArrayList containing the Personality
objects of the Competition with the most votes. The ArrayList returned
must be a different one from the one in the Competition object but the
Personality objects will be the same ones. For instance, if the parameter is
3 then the method must create a new ArrayList, store within it the three
Personality objects that have the highest number of votes, and return that
list.
When writing this method you should consider the following special cases:
• If the parameter’s value is greater-than or equal-to the number of personalities
in the list then all of the personalities will be returned.
• There might be a tie for votes, which could mean that the returned list might
contain more objects than the parameter value. For instance, if the top 3 are
required and the top five personalities have 100, 98, 50, 50 and 42 votes, then
four personalities must be returned. On the other hand, if the top 3 are
required and the top five have 100, 100, 98, 50, 50 and 42 votes then exactly
three would be returned.
code deleted>>
java
add a comment |
An updated version with original condition.
A method called getMost that takes a single integer parameter and returns
an ArrayList of Personality objects. You may assume that the
parameter’s value will be greater-than or equal-to 0 but it might be greater
than the number of items in the Competition object’s list.
This method must return an ArrayList containing the Personality
objects of the Competition with the most votes. The ArrayList returned
must be a different one from the one in the Competition object but the
Personality objects will be the same ones. For instance, if the parameter is
3 then the method must create a new ArrayList, store within it the three
Personality objects that have the highest number of votes, and return that
list.
When writing this method you should consider the following special cases:
• If the parameter’s value is greater-than or equal-to the number of personalities
in the list then all of the personalities will be returned.
• There might be a tie for votes, which could mean that the returned list might
contain more objects than the parameter value. For instance, if the top 3 are
required and the top five personalities have 100, 98, 50, 50 and 42 votes, then
four personalities must be returned. On the other hand, if the top 3 are
required and the top five have 100, 100, 98, 50, 50 and 42 votes then exactly
three would be returned.
code deleted>>
java
3
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09
add a comment |
An updated version with original condition.
A method called getMost that takes a single integer parameter and returns
an ArrayList of Personality objects. You may assume that the
parameter’s value will be greater-than or equal-to 0 but it might be greater
than the number of items in the Competition object’s list.
This method must return an ArrayList containing the Personality
objects of the Competition with the most votes. The ArrayList returned
must be a different one from the one in the Competition object but the
Personality objects will be the same ones. For instance, if the parameter is
3 then the method must create a new ArrayList, store within it the three
Personality objects that have the highest number of votes, and return that
list.
When writing this method you should consider the following special cases:
• If the parameter’s value is greater-than or equal-to the number of personalities
in the list then all of the personalities will be returned.
• There might be a tie for votes, which could mean that the returned list might
contain more objects than the parameter value. For instance, if the top 3 are
required and the top five personalities have 100, 98, 50, 50 and 42 votes, then
four personalities must be returned. On the other hand, if the top 3 are
required and the top five have 100, 100, 98, 50, 50 and 42 votes then exactly
three would be returned.
code deleted>>
java
An updated version with original condition.
A method called getMost that takes a single integer parameter and returns
an ArrayList of Personality objects. You may assume that the
parameter’s value will be greater-than or equal-to 0 but it might be greater
than the number of items in the Competition object’s list.
This method must return an ArrayList containing the Personality
objects of the Competition with the most votes. The ArrayList returned
must be a different one from the one in the Competition object but the
Personality objects will be the same ones. For instance, if the parameter is
3 then the method must create a new ArrayList, store within it the three
Personality objects that have the highest number of votes, and return that
list.
When writing this method you should consider the following special cases:
• If the parameter’s value is greater-than or equal-to the number of personalities
in the list then all of the personalities will be returned.
• There might be a tie for votes, which could mean that the returned list might
contain more objects than the parameter value. For instance, if the top 3 are
required and the top five personalities have 100, 98, 50, 50 and 42 votes, then
four personalities must be returned. On the other hand, if the top 3 are
required and the top five have 100, 100, 98, 50, 50 and 42 votes then exactly
three would be returned.
code deleted>>
java
java
edited Nov 22 '18 at 13:58
Jay
asked Nov 22 '18 at 11:50
JayJay
11
11
3
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09
add a comment |
3
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09
3
3
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09
add a comment |
1 Answer
1
active
oldest
votes
I don't know if you're allowed to use streams. but this code fragment does what you ask: (Numbers is your List with numbers)
private static long getNumber(int number) {
if (number < 1 || number >= numbers.size()) return number;
int numberFromList = numbers.get(number - 1);
return (number + numbers.stream().filter(n -> n == numberFromList).count()) - 1;
}
Next time please add some code you've already tried.
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430399%2fgetting-tied-values-from-arraylist%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't know if you're allowed to use streams. but this code fragment does what you ask: (Numbers is your List with numbers)
private static long getNumber(int number) {
if (number < 1 || number >= numbers.size()) return number;
int numberFromList = numbers.get(number - 1);
return (number + numbers.stream().filter(n -> n == numberFromList).count()) - 1;
}
Next time please add some code you've already tried.
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
add a comment |
I don't know if you're allowed to use streams. but this code fragment does what you ask: (Numbers is your List with numbers)
private static long getNumber(int number) {
if (number < 1 || number >= numbers.size()) return number;
int numberFromList = numbers.get(number - 1);
return (number + numbers.stream().filter(n -> n == numberFromList).count()) - 1;
}
Next time please add some code you've already tried.
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
add a comment |
I don't know if you're allowed to use streams. but this code fragment does what you ask: (Numbers is your List with numbers)
private static long getNumber(int number) {
if (number < 1 || number >= numbers.size()) return number;
int numberFromList = numbers.get(number - 1);
return (number + numbers.stream().filter(n -> n == numberFromList).count()) - 1;
}
Next time please add some code you've already tried.
I don't know if you're allowed to use streams. but this code fragment does what you ask: (Numbers is your List with numbers)
private static long getNumber(int number) {
if (number < 1 || number >= numbers.size()) return number;
int numberFromList = numbers.get(number - 1);
return (number + numbers.stream().filter(n -> n == numberFromList).count()) - 1;
}
Next time please add some code you've already tried.
edited Nov 22 '18 at 12:15
answered Nov 22 '18 at 12:09
Stephan HogenboomStephan Hogenboom
362212
362212
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
add a comment |
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
wel this would work for int numbers only, as I understand. But my arraylist has an objects with different values, amount of vote, name, and so on.
– Jay
Nov 22 '18 at 13:27
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430399%2fgetting-tied-values-from-arraylist%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
can you shar what have you done so far?
– codeLover
Nov 22 '18 at 11:53
Please show us the code you've written so far and where exactely are you stuck. Otherwise this is just another of "please do my homework for me" questions.
– TheJavaGuy-Ivan Milosavljević
Nov 22 '18 at 12:04
This is a 'do my homework' question...
– Ben R.
Nov 22 '18 at 12:25
I have updated my original question. And yes, it is homework question, but Im not piggy back riding, I really do my best. Im just very new into coding.
– Jay
Nov 22 '18 at 13:09