-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpract.java~
157 lines (139 loc) · 5.16 KB
/
pract.java~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/**
* Array2D: transpose and swapRows.
*/
// Vector<Rectangle> r = new Vector<Rectangle>();
// this.add( shape );
//int [][] ex = new int[4][5];
public class Array2D
{
//------------------- transpose --------------------------------------------
/**
* Given an n x m 2D array, return the transpose of that array, which
* is an m x n array whose rows are the columns of the input array and
* columns are the rows of the input array.
*
* each entry [i][j] of the input array is assigned to entry [j][i] of
* the returned array.
*
* If the input array is empty return null.
*/
public static float[][] transpose( float[][] data )
{
///////////////// add code here ////////////////////////////////
if ( data.length > 0 )
{
float[][] trans = new float[data[0].length][data.length]; // be sure to create this array
for ( int r = 0; r<data.length; r++ )
{
for ( int c = 0; c<data[0].length; c++ )
{
trans[c][r] = data[r][c];
}
}
return trans;
}
else
return data;
}
//--------------- swapRows -------------------------
/**
* swap two rows in the array; you may assume that all rows have the
* same number of rows.
*/
public static void swapRows( float[][] vals, int r1, int r2 )
{
///////////////// add code here ////////////////////////////////////
// check that r1 and r2 are valid row indexes for this array
// if not, just return.
//
// iterate over the columns
// for each column, swap the entry in row r1 with the entry in row r2
/////////////////////////////////////////////////////////////////////
if ( vals == null || r1 <= 0 || r2 <=0 || r1 > vals.length || r2 > vals.length )
{
return;
}
else
{
for ( int c = 0; c < vals[0].length; c++ )
{
float temp;
temp = vals[r1][c];
vals[r1][c] = vals[r2][c];
vals[r2][c] = temp;
}
}
}
//++++++++++++++++++++ DO NOT CHANGE ANY CODE BELOW HERE ++++++++++++++
//--------------------- toString( float[] ) ---------------------------
/**
* generate a string (with no line feeds) from an array floats.
*/
public static String toString( float[] values )
{
if ( values == null )
return "";
String str = new String( "[" );
String prefix = " "; // first value isn't preceded by ,
for ( int i = 0; i < values.length; i++ )
{
str += prefix + values[ i ];
prefix = ", "; // all subsequent values need , before them
}
str += " ]";
return str;
}
//--------------------- toString( float[][] ) ---------------------------
/**
* generate a string (with line feeds after each row) from a 2D float array
*/
public static String toString( float[][] values )
{
if ( values == null )
return "";
String str = new String( "" );
String prefix = "";
for ( int r = 0; r < values.length; r++ )
{
prefix = r + ":[ "; // first on row needs row # and [
for ( int c = 0; c < values[ r ].length; c++ )
{
str += prefix + values[ r ][ c ];
prefix = ", "; // all other values need , before them
}
str += " ]\n";
}
return str;
}
//--------------------------- main ---------------------------------------
public static void main( String[] args )
{
// --------------------------- test rowMax ------------------------
float dataFixed[][] = { { 0, 2, 4, 3, 5, 1 },
{ 10, 12, 14, 13, 15, 11 },
{ -20, -22, -26, -23, -25, -21 },
{ 30, -32, 34, -33, 35, -31 }
};
System.out.println( "-------------- transpose test input ------------" );
System.out.println( toString( dataFixed ));
System.out.println( "----------- Normal test: -----------------------" );
float[][] trans = transpose( dataFixed );
System.out.println( toString( trans ));
System.out.println( "----------- Empty array test: " );
trans = transpose( new float[0][0] );
System.out.println( toString( trans ));
System.out.println( "------------------------------------------------" );
//--------------------- test swapRows ----------------------------------
System.out.println( "-------------- swapRows test input ------------" );
System.out.println( toString( dataFixed ));
System.out.println( "-------- Test: swap rows 1 and 3 -------" );
swapRows( dataFixed, 1, 3 );
System.out.println( toString( dataFixed ));
System.out.println( "-------- Test: swap rows 0 and 2 -------" );
swapRows( dataFixed, 0, 2 );
System.out.println( toString( dataFixed ));
System.out.println( "----------- Bad argument test: ---------" );
swapRows( dataFixed, 1, 8 );
System.out.println( toString( dataFixed ));
System.out.println( "------------------------------------------------" );
}