标签:
package 排序;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class reverseTest {
reverse re = new reverse();
int a[][]=new int[5][5];
@Before
public void setUp() throws Exception {
}
@Test
public void testReverse() {
if(re.reverse(a[2][2])){
for(int x=0;x<a.length;x++){
for(int y=1;y<a[x].length;y++){
if(x!=y){
int t=a[x][y];
a[x][y]=a[y][x];
a[y][x]=t;
}
}
}
System.out.println("you are wrong");
}
else if(re.reverse(a[2][2])){
for(int x=0;x<a.length;x++){
for(int y=x;y<a[x].length;y++){
if(x!=y){
int t=a[x][y];
a[x][y]=a[y][x];
a[y][x]=t;
}
}
}
re.reverse(a);
}
}
}
标签:
原文地址:http://www.cnblogs.com/Pinkleopard/p/5861322.html