日撸java_day37

news/2024/12/29 3:11:03/

第 37 天: 十字链表

package datastructures.graph;/*** ClassName: OrthogonalList* Package: datastructures.graph* Description: Orthogonal List for directed graph.** @Author: luv_x_c* @Create: 2023/5/28 14:53*/
public class OrthogonalList {/*** An inner class for adjacent list.*/static class OrthogonalNode {/*** The row index.*/int row;/*** The column index.*/int column;/*** The next out node.*/OrthogonalNode nextOut;/*** The next in node.*/OrthogonalNode nextIn;/*** The first constructor.** @param paraRow    The row.* @param paraColumn The column.*/public OrthogonalNode(int paraRow, int paraColumn) {row = paraRow;column = paraColumn;nextIn = null;nextOut = null;}// Of OrthogonalNode}// Of class OrthogonalNode/*** The number of nodes.*/int numNodes;/*** The headers for each row.*/OrthogonalNode[] headers;/*** The first constructor.** @param paraMatrix The matrix indicting the graph.*/public OrthogonalList(int[][] paraMatrix) {numNodes = paraMatrix.length;// Step1. Initialize. The data in the headers are not meaningful.OrthogonalNode tempPreciousNode, tempNode;headers = new OrthogonalNode[numNodes];// Step2. Link to its out nodes.for (int i = 0; i < numNodes; i++) {headers[i] = new OrthogonalNode(i, -1);tempPreciousNode = headers[i];for (int j = 0; j < numNodes; j++) {if (paraMatrix[i][j] == 0) {continue;}// Of if// Create a new node.tempNode = new OrthogonalNode(i, j);// Link.tempPreciousNode.nextOut = tempNode;tempPreciousNode = tempNode;}// Of for j}// Of for i// Step3. Link to its in nodes.OrthogonalNode[] tempColumnNodes = new OrthogonalNode[numNodes];System.arraycopy(headers, 0, tempColumnNodes, 0, numNodes);for (int i = 0; i < numNodes; i++) {tempNode = headers[i].nextOut;while ((tempNode != null)) {tempColumnNodes[tempNode.column].nextIn = tempNode;tempColumnNodes[tempNode.column] = tempNode;tempNode = tempNode.nextOut;}// Of while}// Of for i}// Of the first constructor@Overridepublic String toString() {String resultString = "Out arcs: ";OrthogonalNode tempNode;for (int i = 0; i < numNodes; i++) {tempNode = headers[i].nextOut;while (tempNode != null) {resultString += " (" + tempNode.row + ", " + tempNode.column + ")";tempNode = tempNode.nextOut;}// Of whileresultString += "\r\n";}// Of for iresultString += "\r\nIn arcs: ";for (int i = 0; i < numNodes; i++) {tempNode = headers[i].nextIn;while (tempNode != null) {resultString += " (" + tempNode.row + ", " + tempNode.column + ")";tempNode = tempNode.nextIn;}// Of whileresultString += "\r\n";}// Of for ireturn resultString;}// Of toString/*** The entrance of the program.** @param args Not used now.*/public static void main(String[] args) {int[][] tempMatrix = {{0, 1, 0, 0}, {0, 0, 0, 1}, {1, 0, 0, 0}, {0, 1, 1, 0}};OrthogonalList tempList = new OrthogonalList(tempMatrix);System.out.println("The data are:\r\n" + tempList);}// Of main
}// Of class OrthogonalList

解释一下构建入结点链表那块。

 

  for (int i = 0; i < numNodes; i++) {tempNode = headers[i].nextOut;while ((tempNode != null)) {tempColumnNodes[tempNode.column].nextIn = tempNode;tempColumnNodes[tempNode.column] = tempNode;tempNode = tempNode.nextOut;}// Of while}// Of for i

首先,使用一个循环遍历每个头节点 headers[i],其中 i 是节点的索引。

然后,通过 tempNode = headers[i].nextOuttempNode 初始化为当前头节点的第一个出节点。

接下来,进入一个循环 while (tempNode != null),该循环遍历当前头节点的出节点链表。

在循环中,首先执行 tempColumnNodes[tempNode.column].nextIn = tempNode,将当前出节点 tempNode 的引用赋值给对应列索引 tempNode.columntempColumnNodes 数组中的节点的 nextIn 指针,即将当前出节点链接到对应列的入节点链表中。

然后,执行 tempColumnNodes[tempNode.column] = tempNode,将 tempNode 赋值给 tempColumnNodes 数组中的对应列索引位置,以便下次循环时更新对应列的入节点链接位置。

最后,执行 tempNode = tempNode.nextOut,将 tempNode 移动到当前出节点的下一个出节点,继续下一轮循环,直到遍历完当前头节点的出节点链表。


http://www.ppmy.cn/news/217385.html

相关文章

动态权限大全

1.android.permission.WRITE_USER_DICTIONARY 允许应用程序向用户词典中写入新词2.android.permission.WRITE_SYNC_SETTINGS 写入Google在线同步设置3.android.permission.WRITE_SOCIAL_STREAM 读取用户的社交信息流4.android.permission.WRITE_SMS 允许程序写短信5.android.pe…

FontAwesome图标大全

FontAwesome图标大全 FontAwesome图标大全 FontAwesome 4.7.0 图标大全&#xff0c;共计675个图标&#xff0c;以及其在图标字体中的Unicode编码cheatsheet列表&#xff0c;非常方便再WEB等开发过程中速查&#xff0c;一键复制&#xff0c;方便快捷。 https://tooltt.com/info…

支持蓝牙5.0手机大全

近两年发布的手机大都已取消3.5mm耳机孔&#xff0c;又由于没有线束缚&#xff0c;蓝牙耳机就这样一夜之间风靡开来。虽然都是蓝牙&#xff0c;但是各家耳机和手机采用的蓝牙技术却各不相同&#xff0c;比如现在很多耳机和手机就已经开始支持蓝牙5.0 了。那么蓝牙5.0 有什么好处…

qq里面cap字符_特殊符号大全

昵称专用特效字符: ︻︼︽︾〒↑↓☉⊙●〇◎★☆■▓「」『』◆◇▲△▼▽◣◥◢◣◤ ◥№↑↓→←↘↙Ψ※㊣∑⌒∩【】〖〗@ξζω□∮〓※》∏卐√ ╳々♀♂∞①ㄨ≡╬╭╮╰╯╱╲ ▂ ▂ ▃ ▄ ▅ ▆ ▇ █ ▂▃▅▆█ ▁▂▃▄▅▆▇█▇▆▅▄▃▂▁ 基础各类贴图符号…

GM命令代码大全

2871129715 1565079105 3154918763 3213860268 3013579557 3334928235 2535351329 /sro 唤醒 物品第一格子 /sro 1 511 2 511 77 511 说明一下77表示的杀死加伤害511 表示加伤害511 唤醒最多加511 1 表示加力量 2 表示加敏捷 3 表示加智力 4 表示加体力 9 表…

2022蓝牙耳机哪款更值得买?最受欢迎的十大蓝牙耳机排行榜

对于一个爱研究蓝牙耳机的学生党来说&#xff0c;蓝牙耳机在我生活中不可缺少。蓝牙耳机的便携程度极高&#xff0c;音质与有线耳机几乎无差&#xff0c;在生活中的便携使用让我越用越爱。听歌、追剧、打游戏&#xff0c;避免尴尬的同时还能带来极致的声音体验&#xff0c;声临…

通讯协议大全

目录 一、物理层、数据链路层协议 1、远距离蜂窝通信 &#xff08;1&#xff09;2G/3G/4G通信协议 &#xff08;2&#xff09;NB-IoT &#xff08;3&#xff09;5G 2、远距离非蜂窝通信 &#xff08;1&#xff09;WiFi &#xff08;2&#xff09;ZigBee &#xff08;3…

android 权限大全

访问登记属性 android.permission.ACCESS_CHECKIN_PROPERTIES &#xff0c;读取或写入登记check-in数据库属性表的权限 获取错略位置 android.permission.ACCESS_COARSE_LOCATION&#xff0c;通过WiFi或移动基站的方式获取用户错略的经纬度信息&#xff0c;定位精度大概误差在3…