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(79)
Comments(0)
Diggs(0)
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(452)
Comments(0)
Diggs(0)

浙公网安备 33010602011771号