hello-algo/codes/java/utils/ListNode.java

29 lines
568 B
Java
Raw Normal View History

2023-04-24 04:20:51 +08:00
/**
* File: ListNode.java
* Created Time: 2022-11-25
* Author: krahets (krahets@163.com)
2023-04-24 04:20:51 +08:00
*/
package utils;
/* 链表节点 */
2023-04-24 04:20:51 +08:00
public class ListNode {
public int val;
public ListNode next;
public ListNode(int x) {
val = x;
}
/* 将列表反序列化为链表 */
2023-04-24 04:20:51 +08:00
public static ListNode arrToLinkedList(int[] arr) {
ListNode dum = new ListNode(0);
ListNode head = dum;
for (int val : arr) {
head.next = new ListNode(val);
head = head.next;
}
return dum.next;
}
}