利用栈的特性,来遍历取出链表的值,后入栈。出栈时即为反顺序,建立新链表即可。 public ListNode ReverseList(ListNode head) { //判断是否为空。 if(head==null){ &n...