You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
// if head is NULL OR just having a single node, then no need to change anything
if(head == NULL || head -> next == NULL)
{
return head;
}
ListNode* temp; // temporary pointer to store head -> next