Click here to Skip to main content
15,886,873 members
Home / Discussions / Java
   

Java

 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 6:12
mveRichard MacCutchan10-Oct-16 6:12 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 6:29
Member 1278579110-Oct-16 6:29 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 6:38
mveRichard MacCutchan10-Oct-16 6:38 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 6:48
Member 1278579110-Oct-16 6:48 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 7:13
mveRichard MacCutchan10-Oct-16 7:13 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 7:18
Member 1278579110-Oct-16 7:18 
SuggestionRe: How to convert 2d array into 1d array in java Pin
Member 1279318014-Oct-16 0:24
Member 1279318014-Oct-16 0:24 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579115-Oct-16 5:06
Member 1278579115-Oct-16 5:06 
Basically i was trying to do bubble sorting in 2d array with logic
first converted 2d array into 1 d array then sort the elements and again converted back that array into 2d array

class Sort1
{
public static void main(String...avg)
{
int a[][]={{1,2,3,7,12},{4,5},{7,2,6,9,9,11,22,33,44,55}};
//System.out.print(a.length);
int totalelements=0;
for(int x=0;x<a.length;x++)
{
for(int y=0;y<a[x].length;y++)
{
totalelements++;
}
}
//System.out.print(totalelements);
System.out.println("\n"+"unsorted 2d array"+"\n");
for(int i=0;i<a.length;i++)
{
for(int j=0;j<a[i].length;j++)
{
System.out.print(a[i][j]+"\t");
}

System.out.println();
}

System.out.println("\n"+"converted 2d array into 1d array"+"\n");
int b[]=new int[totalelements];
//System.out.print(b.length);
int l=b.length;
int c=0;
for(int k=0;k<a.length;k++)
{
for(int m=0;m<a[k].length;m++)
{
b[c]=a[k][m];
System.out.print(b[c] +"\t");
c++;
}
}

for( int i =1; i<=l-1;i++)
{
for(int j=0; j<l-i;j++)
{
if(b[j]>b[j+1])
{
c =b[j];
b[j]=b[j+1];
b[j+1]=c;
}
}
}
int n=0;
for(int i=0 ; i<a.length ; i++)
{
for(int j=0 ; j<a[i].length ; j++)
{
a[i][j] = b[n];
n++;
}
}
System.out.println("\n"+"\n"+"Sorted 2d array "+"\n");
for(int i=0 ; i<a.length ; i++)
{
for(int j=0 ; j<a[i].length ; j++)
{
System.out.print(a[i][j]+" ");
}
System.out.println();
}
}
}
QuestionRelating Country to its State & Province Pin
Member 1276860029-Sep-16 23:12
Member 1276860029-Sep-16 23:12 
SuggestionRe: Relating Country to its State & Province Pin
Richard MacCutchan29-Sep-16 23:45
mveRichard MacCutchan29-Sep-16 23:45 
GeneralRe: Relating Country to its State & Province Pin
Member 1276860030-Sep-16 0:17
Member 1276860030-Sep-16 0:17 
GeneralRe: Relating Country to its State & Province Pin
Richard MacCutchan30-Sep-16 0:53
mveRichard MacCutchan30-Sep-16 0:53 
Questioncompile error: string is private with powershell Pin
shoysmTP15-Sep-16 0:53
shoysmTP15-Sep-16 0:53 
AnswerRe: compile error: string is private with powershell Pin
Richard MacCutchan15-Sep-16 1:40
mveRichard MacCutchan15-Sep-16 1:40 
QuestionLoad C++ Library Only Once Pin
Django_Untaken10-Sep-16 9:30
Django_Untaken10-Sep-16 9:30 
AnswerRe: Load C++ Library Only Once Pin
Richard MacCutchan10-Sep-16 20:42
mveRichard MacCutchan10-Sep-16 20:42 
GeneralRe: Load C++ Library Only Once Pin
Django_Untaken11-Sep-16 4:58
Django_Untaken11-Sep-16 4:58 
GeneralRe: Load C++ Library Only Once Pin
Richard MacCutchan11-Sep-16 6:17
mveRichard MacCutchan11-Sep-16 6:17 
QuestionI'm having some issues with a source code Pin
DarkoJava2-Sep-16 15:55
DarkoJava2-Sep-16 15:55 
QuestionJava sector best? Pin
Member 127154721-Sep-16 6:42
Member 127154721-Sep-16 6:42 
QuestionJava sector best? Pin
Member 127154721-Sep-16 6:42
Member 127154721-Sep-16 6:42 
AnswerRe: Java sector best? Pin
NotPolitcallyCorrect1-Sep-16 7:10
NotPolitcallyCorrect1-Sep-16 7:10 
AnswerRe: Java sector best? Pin
ZurdoDev12-Oct-16 1:08
professionalZurdoDev12-Oct-16 1:08 
QuestionExposing API VS Stored procedure Pin
Java Lead31-Aug-16 4:28
Java Lead31-Aug-16 4:28 
AnswerRe: Exposing API VS Stored procedure Pin
Richard MacCutchan31-Aug-16 4:43
mveRichard MacCutchan31-Aug-16 4:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.