Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 38c2b90

Browse files
ItemAssociation
1 parent 9eaf070 commit 38c2b90

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

‎src/leetcode2018/ItemAssociation.java

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
package leetcode2018;
2+
3+
import java.util.LinkedList;
4+
import java.util.Queue;
5+
6+
public class ItemAssociation {
7+
8+
public static void main(String[] args) {
9+
// TODO Auto-generated method stub
10+
ItemAssociation test = new ItemAssociation();
11+
String[][] mat= new String[][]{{"Item1","Item2"},
12+
{"Item3","Item4"},
13+
{"Item4","Item5"}};
14+
15+
test.largestItemAssociation(mat);
16+
17+
}
18+
19+
public String[] largestItemAssociation(String[][] itemAssociation)
20+
{ StringBuffer temp= new StringBuffer();
21+
int n=Integer.MIN_VALUE;
22+
Queue<String> q = new LinkedList<>();
23+
for(int i = 0; i< itemAssociation.length; i++){
24+
if(!q.isEmpty() && q.peek()!=itemAssociation[i][0]){
25+
if(n<q.size()){
26+
n=q.size();
27+
temp.setLength(0);
28+
while(!q.isEmpty()){
29+
temp.append(q.poll()+",");
30+
}
31+
}
32+
}
33+
for(int j=0;j< itemAssociation[0].length;j++){
34+
if(!q.contains(itemAssociation[i][j]))
35+
q.offer(itemAssociation[i][j]);
36+
}
37+
}
38+
if(n<q.size()){
39+
n=q.size();
40+
temp.setLength(0);
41+
while(!q.isEmpty()){
42+
temp.append(q.poll()+",");
43+
}
44+
}
45+
String[] re= temp.toString().split(",");
46+
return re;
47+
}
48+
49+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /