多向链表结构如
(视频教程推荐:java课程)
public class Node{
public int value;
public Node next;
public Node rand;
public Node(int data){
this.value = data;
}
}
方法一:使用HashMap结构
public class CopyFromMultiNode {
public static void main(String[] args){
int[] array = {12,3,4,5,6,77,6,54,56,6,7,87,15,15,15};
//数组转Node
Node head = array2node(array);
Node help = head;
System.out.print("处理前 ");
while(help != null){
System.out.print(help.value + " ");
help = help.next;
}
//使用HashMap结构
Node res = copyFromRand1(head);
System.out.println();
System.out.print("处理后结果:");
while(res != null){
System.out.print(res.value+" ");
res = res.next;
}
}
//使用HashMap结构
public static Node copyFromRand1(Node head){
Node cur = head;
HashMap<Node, Node> map = new HashMap<>();
while(cur != null){
map.put(cur, new Node(cur.value));
cur = cur.next;
}
cur = head;
while(cur != null){
map.get(cur).next = map.get(cur.next);
map.get(cur).rand = map.get(cur.rand);
cur = cur.next;
}
return map.get(head);
}
//数组转Node功能,供测试使用
public static Node array2node(int[] array){
Node head = new Node(array[0]);
Node cur = head;
for(int i=1; i<array.length; i++){
cur.next = new Node(array[i]);
cur = cur.next;
}
return head;
}
//基础node节点结构
public static class Node{
public int value;
public Node next;
public Node rand;
public Node(int data){
this.value = data;
}
}
}
2、使用几个有效变量方法,无需其他结构
//使用几个有效变量方法
//替换方法一的copyFromRand1方法
public static Node copyFromRand2(Node head){
Node next = null;
Node cur = head;
//1 -> 2 -> 3 -> 4 ==> 1 -> 1` -> 2 -> 2` -> 3 -> 3` -> 4 -> 4
//完成链表拼接
while(cur != null){
next = cur.next;
cur.next = new Node(cur.value);
cur.next.next = next;
cur = next;
}
cur = head;
Node curCopy = null;
//添加Node的rand值
while(cur != null){
next = cur.next.next;
curCopy = cur.next.next;
curCopy = cur.rand != null? cur.rand.next: null;
cur = next;
}
Node res = head.next;
cur = head;
//拆分
// 1 -> 1` -> 2 -> 2` -> 3 -> 3` -> 4 -> 4
// ==> 1 -> 2 -> 3 -> 4 和 1`-> 2`-> 3`-> 4`
while(cur != null){
next = cur.next.next;
curCopy = cur.next;
cur.next = next;
curCopy.next = next != null ? next.next:null;
cur = next;
}
return res;
}
java复制多向链表的方法
—–文章转载自PHP中文网如有侵权请联系admin#tyuanma.cn删除
Python语言支持编程方式有哪些?
转载请注明来源:java复制多向链表的方法_编程技术_亿码酷站
本文永久链接地址:https://www.ymkuzhan.com/7246.html
本文永久链接地址:https://www.ymkuzhan.com/7246.html
下载声明:
本站资源如无特殊说明默认解压密码为www.ymkuzhan.com建议使用WinRAR解压; 本站资源来源于用户分享、互换、购买以及网络收集等渠道,本站不提供任何技术服务及有偿服务,资源仅提供给大家学习研究请勿作它用。 赞助本站仅为维持服务器日常运行并非购买程序及源码费用因此不提供任何技术支持,如果你喜欢该程序,请购买正版! 版权声明:
下载本站资源学习研究的默认同意本站【版权声明】若本站提供的资源侵犯到你的权益,请提交版权证明文件至邮箱ymkuzhan#126.com(将#替换为@)站长将会在三个工作日内为您删除。 免责声明:
您好,本站所有资源(包括但不限于:源码、素材、工具、字体、图像、模板等)均为用户分享、互换、购买以及网络收集而来,并未取得原始权利人授权,因此禁止一切商用行为,仅可用于个人研究学习使用。请务必于下载后24小时内彻底删除,一切因下载人使用所引起的法律相关责任,包括但不限于:侵权,索赔,法律责任,刑事责任等相关责任,全部由下载人/使用人,全部承担。以上说明,一经发布视为您已全部阅读,理解、同意以上内容,如对以上内容持有异议,请勿下载,谢谢配合!支持正版,人人有责,如不慎对您的合法权益构成侵犯,请联系我们对相应内容进行删除,谢谢!



