Uses of Class
com_github_leetcode.ListNode
-
-
Uses of ListNode in com_github_leetcode
Fields in com_github_leetcode declared as ListNode Modifier and Type Field Description ListNodeListNode. nextConstructors in com_github_leetcode with parameters of type ListNode Constructor Description ListNode(int val, ListNode next) -
Uses of ListNode in s0002_add_two_numbers
Methods in s0002_add_two_numbers that return ListNode Modifier and Type Method Description ListNodeSolution. addTwoNumbers(ListNode l1, ListNode l2)Methods in s0002_add_two_numbers with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. addTwoNumbers(ListNode l1, ListNode l2) -
Uses of ListNode in s0019_remove_nth_node_from_end_of_list
Methods in s0019_remove_nth_node_from_end_of_list that return ListNode Modifier and Type Method Description ListNodeSolution. removeNthFromEnd(ListNode head, int n)Methods in s0019_remove_nth_node_from_end_of_list with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. removeNthFromEnd(ListNode head, int n) -
Uses of ListNode in s0021_merge_two_sorted_lists
Methods in s0021_merge_two_sorted_lists that return ListNode Modifier and Type Method Description ListNodeSolution. mergeTwoLists(ListNode l1, ListNode l2)Methods in s0021_merge_two_sorted_lists with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. mergeTwoLists(ListNode l1, ListNode l2) -
Uses of ListNode in s0023_merge_k_sorted_lists
Methods in s0023_merge_k_sorted_lists that return ListNode Modifier and Type Method Description ListNodeSolution. mergeKLists(ListNode[] lists)Methods in s0023_merge_k_sorted_lists with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. mergeKLists(ListNode[] lists) -
Uses of ListNode in s0024_swap_nodes_in_pairs
Methods in s0024_swap_nodes_in_pairs that return ListNode Modifier and Type Method Description ListNodeSolution. swapPairs(ListNode head)Methods in s0024_swap_nodes_in_pairs with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. swapPairs(ListNode head) -
Uses of ListNode in s0025_reverse_nodes_in_k_group
Methods in s0025_reverse_nodes_in_k_group that return ListNode Modifier and Type Method Description ListNodeSolution. reverseKGroup(ListNode head, int k)Methods in s0025_reverse_nodes_in_k_group with parameters of type ListNode Modifier and Type Method Description ListNodeSolution. reverseKGroup(ListNode head, int k)
-