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

37 lines
852 B
Java
Raw Normal View History

/**
* File: ListNode.java
* Created Time: 2022-11-25
* Author: Krahets (krahets@163.com)
*/
2022-11-08 02:58:42 +08:00
package include;
/* Definition for a singly-linked list node */
2022-11-08 02:58:42 +08:00
public class ListNode {
public int val;
public ListNode next;
public ListNode(int x) {
val = x;
}
/* Generate a linked list with an array */
2022-11-08 02:58:42 +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;
}
/* Get a list node with specific value from a linked list */
2022-11-08 02:58:42 +08:00
public static ListNode getListNode(ListNode head, int val) {
while (head != null && head.val != val) {
head = head.next;
}
return head;
}
}