Comparing TreeMap of ArrayListsCreate ArrayList from arrayWhen to use LinkedList over ArrayList in Java?How to get the last value of an ArrayListInitialization of an ArrayList in one lineComparing Java enum members: == or equals()?Sort ArrayList of custom Objects by propertyDifference between HashMap, LinkedHashMap and TreeMapConverting 'ArrayList<String> to 'String[]' in JavaConvert ArrayList<String> to String[] arrayhow to count an element in each index of Arraylist in c#

How to travel to Japan while expressing milk?

Is it possible to create a QR code using text?

Standard deduction V. mortgage interest deduction - is it basically only for the rich?

Can a virus destroy the BIOS of a modern computer?

Pact of Blade Warlock with Dancing Blade

Processor speed limited at 0.4 Ghz

Why were 5.25" floppy drives cheaper than 8"?

Are British MPs missing the point, with these 'Indicative Votes'?

GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?

How do I exit BASH while loop using modulus operator?

Why didn't Boeing produce its own regional jet?

How seriously should I take size and weight limits of hand luggage?

Do Iron Man suits sport waste management systems?

Why was the shrink from 8″ made only to 5.25″ and not smaller (4″ or less)

files created then deleted at every second in tmp directory

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Blending or harmonizing

Did 'Cinema Songs' exist during Hiranyakshipu's time?

What is a Samsaran Word™?

What is required to make GPS signals available indoors?

In the UK, is it possible to get a referendum by a court decision?

Placement of More Information/Help Icon button for Radio Buttons

Implication of namely

Am I breaking OOP practice with this architecture?



Comparing TreeMap of ArrayLists


Create ArrayList from arrayWhen to use LinkedList over ArrayList in Java?How to get the last value of an ArrayListInitialization of an ArrayList in one lineComparing Java enum members: == or equals()?Sort ArrayList of custom Objects by propertyDifference between HashMap, LinkedHashMap and TreeMapConverting 'ArrayList<String> to 'String[]' in JavaConvert ArrayList<String> to String[] arrayhow to count an element in each index of Arraylist in c#













-1















So I'm doing something kind of funky...
I have a a TreeMap of ArrayLists. <Integer, ArrayList<Integer>>
I need to compare the each ArrayList to see if there is a common element.



How would I do this?



Here is what I think in theory should work, but its no go.



 for(int i = 1; i < treemap.size(); i++)
//cycle this users movies "j"
for(int j=2; j < currentArray.size(); j++)
compareArray = treemap.get(j);
//cylce next users movies "k"
for(int k=1; k<compareArray.size(); k++)
if(currentArray.get(i) == compareArray.get(k))
if (treemap.containsKey(i))
ArrayList<Integer> list3 = treemap.get(i);
list3.add(currentArray.get(j));
treemap2.remove(i);
treemap2.put(i, list3);

if (!treemap.containsKey(i))
ArrayList<Integer> list4 = new ArrayList<Integer>();
list4.add(currentArray.get(j));
treemap2.put(i, list4);





currentArray = treemap.get(i+1);










share|improve this question



















  • 1





    You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

    – Juan Mendes
    Mar 21 at 20:35











  • Yes, I'm aware to try something... But I can't begin to picture a starting point.

    – Hooch
    Mar 21 at 20:41






  • 1





    map.values() gets you all the ArrayList<Integer>'s. That's your starting point

    – Not a JD
    Mar 21 at 20:42












  • So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

    – Hooch
    Mar 22 at 1:40















-1















So I'm doing something kind of funky...
I have a a TreeMap of ArrayLists. <Integer, ArrayList<Integer>>
I need to compare the each ArrayList to see if there is a common element.



How would I do this?



Here is what I think in theory should work, but its no go.



 for(int i = 1; i < treemap.size(); i++)
//cycle this users movies "j"
for(int j=2; j < currentArray.size(); j++)
compareArray = treemap.get(j);
//cylce next users movies "k"
for(int k=1; k<compareArray.size(); k++)
if(currentArray.get(i) == compareArray.get(k))
if (treemap.containsKey(i))
ArrayList<Integer> list3 = treemap.get(i);
list3.add(currentArray.get(j));
treemap2.remove(i);
treemap2.put(i, list3);

if (!treemap.containsKey(i))
ArrayList<Integer> list4 = new ArrayList<Integer>();
list4.add(currentArray.get(j));
treemap2.put(i, list4);





currentArray = treemap.get(i+1);










share|improve this question



















  • 1





    You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

    – Juan Mendes
    Mar 21 at 20:35











  • Yes, I'm aware to try something... But I can't begin to picture a starting point.

    – Hooch
    Mar 21 at 20:41






  • 1





    map.values() gets you all the ArrayList<Integer>'s. That's your starting point

    – Not a JD
    Mar 21 at 20:42












  • So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

    – Hooch
    Mar 22 at 1:40













-1












-1








-1








So I'm doing something kind of funky...
I have a a TreeMap of ArrayLists. <Integer, ArrayList<Integer>>
I need to compare the each ArrayList to see if there is a common element.



How would I do this?



Here is what I think in theory should work, but its no go.



 for(int i = 1; i < treemap.size(); i++)
//cycle this users movies "j"
for(int j=2; j < currentArray.size(); j++)
compareArray = treemap.get(j);
//cylce next users movies "k"
for(int k=1; k<compareArray.size(); k++)
if(currentArray.get(i) == compareArray.get(k))
if (treemap.containsKey(i))
ArrayList<Integer> list3 = treemap.get(i);
list3.add(currentArray.get(j));
treemap2.remove(i);
treemap2.put(i, list3);

if (!treemap.containsKey(i))
ArrayList<Integer> list4 = new ArrayList<Integer>();
list4.add(currentArray.get(j));
treemap2.put(i, list4);





currentArray = treemap.get(i+1);










share|improve this question
















So I'm doing something kind of funky...
I have a a TreeMap of ArrayLists. <Integer, ArrayList<Integer>>
I need to compare the each ArrayList to see if there is a common element.



How would I do this?



Here is what I think in theory should work, but its no go.



 for(int i = 1; i < treemap.size(); i++)
//cycle this users movies "j"
for(int j=2; j < currentArray.size(); j++)
compareArray = treemap.get(j);
//cylce next users movies "k"
for(int k=1; k<compareArray.size(); k++)
if(currentArray.get(i) == compareArray.get(k))
if (treemap.containsKey(i))
ArrayList<Integer> list3 = treemap.get(i);
list3.add(currentArray.get(j));
treemap2.remove(i);
treemap2.put(i, list3);

if (!treemap.containsKey(i))
ArrayList<Integer> list4 = new ArrayList<Integer>();
list4.add(currentArray.get(j));
treemap2.put(i, list4);





currentArray = treemap.get(i+1);







java arraylist treemap






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 1:39







Hooch

















asked Mar 21 at 20:32









HoochHooch

257




257







  • 1





    You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

    – Juan Mendes
    Mar 21 at 20:35











  • Yes, I'm aware to try something... But I can't begin to picture a starting point.

    – Hooch
    Mar 21 at 20:41






  • 1





    map.values() gets you all the ArrayList<Integer>'s. That's your starting point

    – Not a JD
    Mar 21 at 20:42












  • So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

    – Hooch
    Mar 22 at 1:40












  • 1





    You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

    – Juan Mendes
    Mar 21 at 20:35











  • Yes, I'm aware to try something... But I can't begin to picture a starting point.

    – Hooch
    Mar 21 at 20:41






  • 1





    map.values() gets you all the ArrayList<Integer>'s. That's your starting point

    – Not a JD
    Mar 21 at 20:42












  • So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

    – Hooch
    Mar 22 at 1:40







1




1





You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

– Juan Mendes
Mar 21 at 20:35





You have to first attempt something. If it doesn't work, then you post the code, error message, actual vs. expected behavior

– Juan Mendes
Mar 21 at 20:35













Yes, I'm aware to try something... But I can't begin to picture a starting point.

– Hooch
Mar 21 at 20:41





Yes, I'm aware to try something... But I can't begin to picture a starting point.

– Hooch
Mar 21 at 20:41




1




1





map.values() gets you all the ArrayList<Integer>'s. That's your starting point

– Not a JD
Mar 21 at 20:42






map.values() gets you all the ArrayList<Integer>'s. That's your starting point

– Not a JD
Mar 21 at 20:42














So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

– Hooch
Mar 22 at 1:40





So I updated my post with what I believe should be working... I'd imagine it's something stupid, or maybe I just have a bad idea all around.

– Hooch
Mar 22 at 1:40












0






active

oldest

votes












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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288824%2fcomparing-treemap-of-arraylists%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288824%2fcomparing-treemap-of-arraylists%23new-answer', 'question_page');

);

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







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해