最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Java數(shù)據(jù)結構之稀疏矩陣定義與用法示例

 更新時間:2018年01月26日 11:25:22   作者:雪夜&流星  
這篇文章主要介紹了Java數(shù)據(jù)結構之稀疏矩陣定義與用法,結合實例形式分析了java稀疏矩陣的定義、運算、轉(zhuǎn)換等相關操作技巧,需要的朋友可以參考下

本文實例講述了Java數(shù)據(jù)結構之稀疏矩陣定義與用法。分享給大家供大家參考,具體如下:

稀疏矩陣非零元素的三元組類:

package com.clarck.datastructure.matrix;
/**
 * 稀疏矩陣的壓縮存儲
 *
 * 稀疏矩陣非零元素的三元組類
 *
 * @author clarck
 *
 */
public class Triple implements Comparable<Triple> {
  // 行號,列號, 元素值,默認訪問權限
  int row, colum, value;
  public Triple(int row, int colum, int value) {
    if (row < 0 || colum < 0) {
      throw new IllegalArgumentException("稀疏矩陣元素三元組的行/列序號非正數(shù)");
    }
    this.row = row;
    this.colum = colum;
    this.value = value;
  }
  /**
   * 拷貝構造方法,復制一個三元組
   *
   * @param elem
   */
  public Triple(Triple elem) {
    this(elem.row, elem.colum, elem.value);
  }
  @Override
  public String toString() {
    return "(" + row + ", " + colum + ", " + value + ")";
  }
  /**
   * 兩個三元組是否相等,比較位置和元素值
   */
  public boolean equals(Object obj) {
    if (!(obj instanceof Triple))
      return false;
    Triple elem = (Triple) obj;
    return this.row == elem.row && this.colum == elem.colum
        && this.value == elem.value;
  }
  /**
   * 根據(jù)三元組位置比較兩個三元組的大小,與元素值無關,約定三元組排序次序
   */
  @Override
  public int compareTo(Triple elem) {
    //當前三元組對象小
    if (this.row < elem.row || this.row == elem.row && this.colum < elem.colum)
      return -1;
    //相等,與equals方法含義不同
    if (this.row == elem.row && this.colum == elem.colum)
      return 0;
    //當前三元組對象大
    return 1;
  }
  /**
   * 加法, +=運算符作用
   * @param term
   */
  public void add(Triple term) {
    if (this.compareTo(term) == 0)
      this.value += term.value;
    else
      throw new IllegalArgumentException("兩項的指數(shù)不同,不能相加");
  }
  /**
   * 約定刪除元素
   *
   * @return
   */
  public boolean removable() {
    //不存儲為0的元素
    return this.value == 0;
  }
  /**
   * 返回對稱位置矩陣元素的三元組
   * @return
   */
  public Triple toSymmetry() {
    return new Triple(this.colum, this.row, this.value);
  }
  /**
   * 加法運算,重載運算符+
   * @return
   */
  public Triple plus(Triple term) {
    Triple tmp = new Triple(this);
    tmp.add(term);
    return tmp;
  }
}

三元組順序存儲的稀疏矩陣類:

package com.clarck.datastructure.matrix;
import com.clarck.datastructure.linear.SeqList;
/**
 * 稀疏矩陣的壓縮存儲
 *
 * 稀疏矩陣三元組順序表
 *
 * 三元組順序存儲的稀疏矩陣類
 *
 * @author clarck
 *
 */
public class SeqSparseMatrix {
  // 矩陣行數(shù)、列數(shù)
  private int rows, columns;
  // 稀疏矩陣三元組順序表
  private SeqList<Triple> list;
  /**
   * 構造rows行,colums列零矩陣
   *
   * @param rows
   * @param columns
   */
  public SeqSparseMatrix(int rows, int columns) {
    if (rows <= 0 || columns <= 0)
      throw new IllegalArgumentException("矩陣行數(shù)或列數(shù)為非正數(shù)");
    this.rows = rows;
    this.columns = columns;
    // 構造空順序表,執(zhí)行SeqList()構造方法
    this.list = new SeqList<Triple>();
  }
  public SeqSparseMatrix(int rows, int columns, Triple[] elems) {
    this(rows, columns);
    // 按行主序插入一個元素的三元組
    for (int i = 0; i < elems.length; i++)
      this.set(elems[i]);
  }
  /**
   * 返回矩陣第i行第j列元素,排序順序表的順序查找算法,O(n)
   *
   * @param i
   * @param j
   * @return
   */
  public int get(int i, int j) {
    if (i < 0 || i >= rows || j < 0 || j >= columns)
      throw new IndexOutOfBoundsException("矩陣元素的行或列序號越界");
    Triple item = new Triple(i, j, 0);
    int k = 0;
    Triple elem = this.list.get(k);
    // 在排序順序表list中順序查找item對象
    while (k < this.list.length() && item.compareTo(elem) >= 0) {
      // 只比較三元組元素位置,即elem.row == i && elem.column == j
      if (item.compareTo(elem) == 0)
        return elem.value;
      // 查找到(i, j), 返回矩陣元素
      k++;
      elem = this.list.get(k);
    }
    return 0;
  }
  /**
   * 以三元組設置矩陣元素
   *
   * @param elem
   */
  public void set(Triple elem) {
    this.set(elem.row, elem.colum, elem.value);
  }
  /**
   * 設置矩陣第row行第column列的元素值為value,按行主序在排序順序表list中更改或插入一個元素的三元組, O(n)
   *
   * @param row
   * @param column
   * @param value
   */
  public void set(int row, int column, int value) {
    // 不存儲值為0元素
    if (value == 0)
      return;
    if (row >= this.rows || column >= this.columns)
      throw new IllegalArgumentException("三元組的行或列序號越界");
    Triple elem = new Triple(row, column, value);
    int i = 0;
    // 在排序的三元組順序表中查找elem對象,或更改或插入
    while (i < this.list.length()) {
      Triple item = this.list.get(i);
      // 若elem存在,則更改改位置矩陣元素
      if (elem.compareTo(item) == 0) {
        // 設置順序表第i個元素為elem
        this.list.set(i, elem);
        return;
      }
      // elem 較大時向后走
      if (elem.compareTo(item) >= 0)
        i++;
      else
        break;
    }
    this.list.insert(i, elem);
  }
  @Override
  public String toString() {
    String str = "三元組順序表:" + this.list.toString() + "\n";
    str += "稀疏矩陣" + this.getClass().getSimpleName() + "(" + rows + " * "
        + columns + "): \n";
    int k = 0;
    // 返回第k個元素,若k指定序號無效則返回null
    Triple elem = this.list.get(k++);
    for (int i = 0; i < this.rows; i++) {
      for (int j = 0; j < this.columns; j++)
        if (elem != null && i == elem.row && j == elem.colum) {
          str += String.format("%4d", elem.value);
          elem = this.list.get(k++);
        } else {
          str += String.format("%4d", 0);
        }
      str += "\n";
    }
    return str;
  }
  /**
   * 返回當前矩陣與smat相加的矩陣, smatc=this+smat,不改變當前矩陣,算法同兩個多項式相加
   *
   * @param smat
   * @return
   */
  public SeqSparseMatrix plus(SeqSparseMatrix smat) {
    if (this.rows != smat.rows || this.columns != smat.columns)
      throw new IllegalArgumentException("兩個矩陣階數(shù)不同,不能相加");
    // 構造rows*columns零矩陣
    SeqSparseMatrix smatc = new SeqSparseMatrix(this.rows, this.columns);
    int i = 0, j = 0;
    // 分別遍歷兩個矩陣的順序表
    while (i < this.list.length() && j < smat.list.length()) {
      Triple elema = this.list.get(i);
      Triple elemb = smat.list.get(j);
      // 若兩個三元組表示相同位置的矩陣元素,則對應元素值相加
      if (elema.compareTo(elemb) == 0) {
        // 相加結果不為零,則新建元素
        if (elema.value + elemb.value != 0)
          smatc.list.append(new Triple(elema.row, elema.colum,
              elema.value + elemb.value));
        i++;
        j++;
      } else if (elema.compareTo(elemb) < 0) { // 將較小三元組復制添加到smatc順序表最后
        // 復制elema元素執(zhí)行Triple拷貝構造方法
        smatc.list.append(new Triple(elema));
        i++;
      } else {
        smatc.list.append(new Triple(elemb));
        j++;
      }
    }
    // 將當前矩陣順序表的剩余三元組復制添加到smatc順序表最后
    while (i < this.list.length())
      smatc.list.append(new Triple(this.list.get(i++)));
    // 將smat中剩余三元組復制添加到smatc順序表最后
    while (j < smatc.list.length()) {
      Triple elem = smat.list.get(j++);
      if (elem != null) {
        smatc.list.append(new Triple(elem));
      }
    }
    return smatc;
  }
  /**
   * 當前矩陣與smat矩陣相加,this+=smat, 改變當前矩陣,算法同兩個多項式相加
   *
   * @param smat
   */
  public void add(SeqSparseMatrix smat) {
    if (this.rows != smat.rows || this.columns != smat.columns)
      throw new IllegalArgumentException("兩個矩陣階數(shù)不同,不能相加");
    int i = 0, j = 0;
    // 將mat的各三元組依次插入(或相加)到當前矩陣三元組順序表中
    while (i < this.list.length() && j < smat.list.length()) {
      Triple elema = this.list.get(i);
      Triple elemb = smat.list.get(j);
      // 若兩個三元組表示相同位置的矩陣元素,則對應元素值相加
      if (elema.compareTo(elemb) == 0) {
        // 相加結果不為0,則新建元素
        if (elema.value + elemb.value != 0)
          this.list.set(i++, new Triple(elema.row, elema.colum,
              elema.value + elemb.value));
        else
          this.list.remove(i);
        j++;
      } else if (elema.compareTo(elemb) < 0) { // 繼續(xù)向后尋找elemb元素的插入元素
        i++;
      } else {
        // 復制elemb元素插入作為this.list的第i個元素
        this.list.insert(i++, new Triple(elemb));
        j++;
      }
    }
    // 將mat中剩余三元組依次復制插入當前矩陣三元組順序表中
    while (j < smat.list.length()) {
      this.list.append(new Triple(smat.list.get(j++)));
    }
  }
  // 深拷貝
  public SeqSparseMatrix(SeqSparseMatrix smat) {
    this(smat.rows, smat.columns);
    // 創(chuàng)建空順序表,默認容量
    this.list = new SeqList<Triple>();
    // 復制smat中所有三元組對象
    for (int i = 0; i < smat.list.length(); i++)
      this.list.append(new Triple(smat.list.get(i)));
  }
  /**
   * 比較兩個矩陣是否相等
   */
  public boolean equals(Object obj) {
    if (this == obj)
      return true;
    if (!(obj instanceof SeqSparseMatrix))
      return false;
    SeqSparseMatrix smat = (SeqSparseMatrix) obj;
    return this.rows == smat.rows && this.columns == smat.columns
        && this.list.equals(smat.list);
  }
  /**
   * 返回轉(zhuǎn)置矩陣
   * @return
   */
  public SeqSparseMatrix transpose() {
    //構造零矩陣,指定行數(shù)和列數(shù)
    SeqSparseMatrix trans = new SeqSparseMatrix(columns, rows);
    for (int i = 0; i < this.list.length(); i++) {
      //插入矩陣對稱位置元素的三元組
      trans.set(this.list.get(i).toSymmetry());
    }
    return trans;
  }
}

測試類:

package com.clarck.datastructure.matrix;
/**
 * 稀疏矩陣的壓縮存儲
 *
 * 稀疏矩陣三元組順序表
 *
 * 三元組順序表表示的稀疏矩陣及其加法運算
 *
 * @author clarck
 *
 */
public class SeqSparseMatrix_test {
  public static void main(String args[]) {
    Triple[] elemsa = { new Triple(0, 2, 11), new Triple(0, 4, 17),
        new Triple(1, 1, 20), new Triple(3, 0, 19),
        new Triple(3, 5, 28), new Triple(4, 4, 50) };
    SeqSparseMatrix smata = new SeqSparseMatrix(5, 6, elemsa);
    System.out.print("A " + smata.toString());
    Triple[] elemsb = { new Triple(0, 2, -11), new Triple(0, 4, -17),
        new Triple(2, 3, 51), new Triple(3, 0, 10),
        new Triple(4, 5, 99), new Triple(1, 1, 0) };
    SeqSparseMatrix smatb = new SeqSparseMatrix(5,6,elemsb);
    System.out.print("B " + smatb.toString());
    SeqSparseMatrix smatc = smata.plus(smatb);
    System.out.print("C=A+B"+smatc.toString());
    System.out.println();
    smata.add(smatb);
    System.out.print("A+=B" + smata.toString());
    System.out.println("C.equals(A)?" + smatc.equals(smata));
    SeqSparseMatrix smatd = new SeqSparseMatrix(smatb);
    smatb.set(0,2,1);
    System.out.print("B " + smatb.toString());
    System.out.print("D " + smatd.toString());
    System.out.println("A轉(zhuǎn)置" + smata.transpose().toString());
  }
}

運行結果:

A 三元組順序表:((0, 2, 11), (0, 4, 17), (1, 1, 20), (3, 0, 19), (3, 5, 28), (4, 4, 50))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0 11  0 17  0
  0 20  0  0  0  0
  0  0  0  0  0  0
 19  0  0  0  0 28
  0  0  0  0 50  0
B 三元組順序表:((0, 2, -11), (0, 4, -17), (2, 3, 51), (3, 0, 10), (4, 5, 99))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0 -11  0 -17  0
  0  0  0  0  0  0
  0  0  0 51  0  0
 10  0  0  0  0  0
  0  0  0  0  0 99
C=A+B三元組順序表:((1, 1, 20), (2, 3, 51), (3, 0, 29), (3, 5, 28), (4, 4, 50), (4, 5, 99))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0  0  0  0  0
  0 20  0  0  0  0
  0  0  0 51  0  0
 29  0  0  0  0 28
  0  0  0  0 50 99
A+=B三元組順序表:((1, 1, 20), (2, 3, 51), (3, 0, 29), (3, 5, 28), (4, 4, 50), (4, 5, 99))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0  0  0  0  0
  0 20  0  0  0  0
  0  0  0 51  0  0
 29  0  0  0  0 28
  0  0  0  0 50 99
C.equals(A)?true
B 三元組順序表:((0, 2, 1), (0, 4, -17), (2, 3, 51), (3, 0, 10), (4, 5, 99))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0  1  0 -17  0
  0  0  0  0  0  0
  0  0  0 51  0  0
 10  0  0  0  0  0
  0  0  0  0  0 99
D 三元組順序表:((0, 2, -11), (0, 4, -17), (2, 3, 51), (3, 0, 10), (4, 5, 99))
稀疏矩陣SeqSparseMatrix(5 * 6):
  0  0 -11  0 -17  0
  0  0  0  0  0  0
  0  0  0 51  0  0
 10  0  0  0  0  0
  0  0  0  0  0 99
A轉(zhuǎn)置三元組順序表:((0, 3, 29), (1, 1, 20), (3, 2, 51), (4, 4, 50), (5, 3, 28), (5, 4, 99))
稀疏矩陣SeqSparseMatrix(6 * 5):
  0  0  0 29  0
  0 20  0  0  0
  0  0  0  0  0
  0  0 51  0  0
  0  0  0  0 50
  0  0  0 28 99

更多關于java算法相關內(nèi)容感興趣的讀者可查看本站專題:《Java數(shù)據(jù)結構與算法教程》、《Java操作DOM節(jié)點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總

希望本文所述對大家java程序設計有所幫助。

相關文章

  • java ArrayBlockingQueue阻塞隊列的實現(xiàn)示例

    java ArrayBlockingQueue阻塞隊列的實現(xiàn)示例

    ArrayBlockingQueue是一個基于數(shù)組實現(xiàn)的阻塞隊列,本文就來介紹一下java ArrayBlockingQueue阻塞隊列的實現(xiàn)示例,具有一定的參考價值,感興趣的可以了解一下
    2024-02-02
  • springboot創(chuàng)建線程池的兩種方式小結

    springboot創(chuàng)建線程池的兩種方式小結

    這篇文章主要介紹了springboot創(chuàng)建線程池的兩種方式小結,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-12-12
  • Java讀取本地json文件及相應處理方法

    Java讀取本地json文件及相應處理方法

    今天小編就為大家分享一篇Java讀取本地json文件及相應處理方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-09-09
  • SpringBoot+vue+Axios實現(xiàn)Token令牌的詳細過程

    SpringBoot+vue+Axios實現(xiàn)Token令牌的詳細過程

    Token是在服務端產(chǎn)生的,前端可以使用用戶名/密碼向服務端請求認證(登錄),服務端認證成功,服務端會返回?Token?給前端,Token可以使用自己的算法自定義,本文給大家介紹SpringBoot+vue+Axios實現(xiàn)Token令牌,感興趣的朋友一起看看吧
    2023-10-10
  • springboot如何根據(jù)配置屏蔽接口返回字段

    springboot如何根據(jù)配置屏蔽接口返回字段

    這篇文章主要介紹了springboot如何根據(jù)配置屏蔽接口返回字段問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-08-08
  • SpringBoot中使用Quartz設置定時任務的實例詳解

    SpringBoot中使用Quartz設置定時任務的實例詳解

    Quartz是OpenSymphony開源組織在任務調(diào)度領域的一個開源項目,完全基于 Java 實現(xiàn),本文小編給大家介紹了SpringBoot中如何使用Quartz設置定時任務,文中通過代碼示例給大家講解的非常詳細,需要的朋友可以參考下
    2023-12-12
  • string類和LocalDateTime的相互轉(zhuǎn)換方式

    string類和LocalDateTime的相互轉(zhuǎn)換方式

    這篇文章主要介紹了string類和LocalDateTime的相互轉(zhuǎn)換方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-02-02
  • Java數(shù)據(jù)結構之復雜度篇

    Java數(shù)據(jù)結構之復雜度篇

    算法復雜度分為時間復雜度和空間復雜度。其作用:?時間復雜度是度量算法執(zhí)行的時間長短;而空間復雜度是度量算法所需存儲空間的大小
    2022-01-01
  • SpringBoot實現(xiàn)短信發(fā)送及手機驗證碼登錄

    SpringBoot實現(xiàn)短信發(fā)送及手機驗證碼登錄

    本文主要介紹了SpringBoot實現(xiàn)短信發(fā)送及手機驗證碼登錄,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2023-07-07
  • Flink開發(fā)IDEA環(huán)境搭建與測試的方法

    Flink開發(fā)IDEA環(huán)境搭建與測試的方法

    這篇文章主要介紹了Flink開發(fā)IDEA環(huán)境搭建與測試的方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-03-03

最新評論

泸州市| 蒙城县| 津市市| 仁布县| 呼伦贝尔市| 山阴县| 巨鹿县| 河间市| 洛隆县| 陆良县| 舒城县| 桂东县| 怀仁县| 民县| 永靖县| 六安市| 榕江县| 平邑县| 南宁市| 彭山县| 开江县| 郑州市| 宁波市| 北安市| 怀来县| 新龙县| 兖州市| 桑植县| 樟树市| 千阳县| 惠州市| 恭城| 凤冈县| 灌云县| 巨鹿县| 广安市| 阳山县| 兴城市| 安溪县| 穆棱市| 定州市|