码迷,mamicode.com
首页 > 其他好文 > 详细

HW7.18

时间:2016-09-24 20:18:05      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         int[][] m = {{1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}};
 6 
 7         shuffle(m);
 8 
 9         for(int i = 0; i < m.length; i++)
10         {
11             for(int j = 0; j < m[0].length; j++)
12                 System.out.print(m[i][j] + " ");
13             System.out.println();
14         }
15     }
16 
17     public static void shuffle(int[][] array)
18     {
19         for(int i = 0; i < array.length; i++)
20         {
21             int randomLocation = (int)(Math.random() * array.length);
22             int[] temp = new int[array[0].length];
23             for(int j = 0; j < array[0].length; j++)
24             {
25                 temp[j] = array[i][j];
26                 array[i][j] = array[randomLocation][j];
27                 array[randomLocation][j] = temp[j];
28             }
29         }
30     }
31 }

 

HW7.18

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5903883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!