//TODO 递归的方式 递归就相当于栈
		//1->2->3->4->5->null
		// 判断边界的条件
	if(head==null||head.next==null){
            return head;
 	}
     	//TODO 递归的方式
		//此时head.next->5
        ListNode res = ReverseList(head.next); 
		//意思就是5.next=4
        head.next.next=head;
		//4<-5
		//....
        head.next=null;
        return res;