Algorithm/src/main/java/linkedlist/ListNode.java

12 lines
220 B
Java
Raw Normal View History

2025-03-14 20:12:38 +08:00
package linkedlist;
public class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
next = null;
}
2025-03-18 09:09:22 +08:00
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
2025-03-14 20:12:38 +08:00
}