91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java如何實現順時針/逆時針打印矩陣操作

發布時間:2021-09-27 09:21:37 來源:億速云 閱讀:257 作者:小新 欄目:編程語言

小編給大家分享一下java如何實現順時針/逆時針打印矩陣操作,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

java實現的順時針/逆時針打印矩陣操作。具體如下:

public class SnakeMatrix {  /**   * 定義矩陣的階數   */  private int n;  //填充矩陣的值  private int k = 1;  private int[][] data;  /**   * 定義矩陣移動的方向   */  public enum Direction {    left, right, up, down,  }  SnakeMatrix(int n) {    this.n = n;    data = new int[n][n];  }  public void clockwisePrintMatrix() {    //定義行數    int rowLen = data.length;    //定義列數    int columnLen = data.length;    //移動方向    Direction direction = Direction.right;    //定義上邊界    int upBound = 0;    //定義下邊界    int downBound = rowLen - 1;    //定義左邊界    int leftBound = 0;    //定義右邊界    int rightBound = columnLen - 1;    //矩陣當前行數    int row = 0;    //矩陣當前列數    int column = 0;    while (true) {      data[row][column] = k++;      if (upBound == downBound && leftBound == rightBound) {        // System.out.println(" upBound :"+upBound +" downBound :"+downBound+" leftBound :"+leftBound +" rightBound :"+rightBound);        break;      }      switch (direction) {        case right:          if (column < rightBound) {            ++column;          } else {            ++row;            direction = Direction.down;            ++upBound;          }          break;        case down:          if (row < downBound) {            ++row;          } else {            --column;            direction = Direction.left;            --rightBound;          }          break;        case up:          if (row > upBound) {            --row;          } else {            ++column;            direction = Direction.right;            ++leftBound;          }          break;        case left:          if (column > leftBound) {            --column;          } else {            --row;            direction = Direction.up;            --downBound;          }          break;        default:          break;      }    }    for (int i = 0; i < n; i++) {      for (int j = 0; j < n; j++) {        System.out.printf("%2d%s", data[i][j], " ");      }      System.out.println();    }  }  public void anticlockwisePrintMatrix() {    int rowLen = data.length;    int columnLen = data.length;    int leftBound = 0;    int rightBound = columnLen - 1;    int upBound = 0;    int downBound = rowLen - 1;    int row = 0;    int column = 0;    Direction direction = Direction.down;    while (true) {      data[row][column] = k++;      if (rightBound == leftBound && upBound == downBound) {        break;      }      switch (direction) {        case down:          if (row < downBound) {            row++;          } else {            column++;            direction = Direction.right;            leftBound++;          }          break;        case right:          if (column < rightBound) {            column++;          } else {            row--;            direction = Direction.up;            downBound--;          }          break;        case up:          if (row > upBound) {            row--;          } else {            direction = Direction.left;            column--;            rightBound--;          }          break;        case left:          if (column > leftBound) {            column--;          } else {            direction = Direction.down;            row++;            upBound++;          }          break;        default:          break;      }    }    for (int i = 0; i < n; i++) {      for (int j = 0; j < n; j++) {        System.out.printf("%2d%s", data[i][j], " ");      }      System.out.println();    }  }}

首先呢上面是定義一個工具類,

public class MainActivity extends AppCompatActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    int number = 5;    SnakeMatrix snakeMatrix = new SnakeMatrix(number);    snakeMatrix.anticlockwisePrintMatrix();    //snakeMatrix.clockwisePrintMatrix();  }}

直接進行使用,有兩個方法,一個正序一個倒序

以上是“java如何實現順時針/逆時針打印矩陣操作”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

噶尔县| 拜泉县| 昌吉市| 西峡县| 台前县| 资溪县| 贵溪市| 通化市| 瓦房店市| 博湖县| 汤阴县| 莱州市| 浦江县| 额尔古纳市| 浦东新区| 内丘县| 辉县市| 石屏县| 南康市| 花垣县| 时尚| 华容县| 岚皋县| 台南县| 江源县| 颍上县| 武义县| 崇明县| 苏尼特右旗| 潍坊市| 内乡县| 滨州市| 秦皇岛市| 辉南县| 余庆县| 西充县| 许昌县| 灌南县| 台北市| 公安县| 房产|