首页 > 代码库 > 【LeetCode】Swap Nodes in Pairs 链表指针的应用
【LeetCode】Swap Nodes in Pairs 链表指针的应用
题目:swap nodes in pairs
<span style="font-size:18px;">/** * LeetCode Swap Nodes in Pairs * 题目:输入一个链表,要求将链表每相邻的两个节点交换位置后输出 * 思路:遍历一遍就可以,时间复杂度O(n) * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } */ package javaTrain; public class Train12 { public ListNode swapPairs(ListNode head) { if(head == null || head.next == null) return null; ListNode pNode; pNode = head; while(pNode != null && pNode.next != null){ int temp; temp = pNode.val; pNode.val = pNode.next.val; pNode.next.val = temp; pNode = pNode.next.next; } return head; } } </span>
【LeetCode】Swap Nodes in Pairs 链表指针的应用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。