Algorithm/src/main/java/linkedlist/ListNode.java
2025-03-18 09:09:22 +08:00

12 lines
220 B
Java

package linkedlist;
public class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
next = null;
}
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
}