public static ListNode reveseList (ListNode head) { // write code here ListNode tmp=head.next; ListNode newHead=reveseList(head.next); tmp.next=head; Read More
posted @ 2020-08-21 14:18 soft.push("zzq") Views(70) Comments(0) Diggs(0) Edit
public static void main(String[] args) { Random rand = new Random(); int[] arr1 = new int[10]; int[] arr2 = new int[15]; for(int i = 0; i < 10; i++) { Read More
posted @ 2020-08-21 11:54 soft.push("zzq") Views(437) Comments(0) Diggs(0) Edit