刷leetcode過程中記錄難度題,自己做法及最優做法

leetcode 41. First Missing Positive
Given an unsorted integer array, find the first missing positive integer.

For example,
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.

Your algorithm should run in O(n) time and uses constant space.

my Solution:

class Solution {
public:
    int firstMissingPositive(vector<int>& nums) {
        if(nums.size() <1)
            return 1;
        int i;
        for(i=0;i<nums.size();++i)
        {
            while(nums[i] >0 && nums[i] <= nums.size()&&nums[nums[i] -1]!=nums[i])
                swap(nums[nums[i] -1],nums[i]);
        }
        for(int i=0;i<nums.size();++i)
            if(nums[i] != i+1)
                return i+1;
        return nums.size()+1;
    }
};

leetcode 25. Reverse Nodes in k-Group

Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.

k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.

You may not alter the values in the nodes, only nodes itself may be changed.

Only constant memory is allowed.

For example,
Given this linked list: 1->2->3->4->5

For k = 2, you should return: 2->1->4->3->5

For k = 3, you should return: 3->2->1->4->5
下面是我的代碼,不太符合固定存儲空間的要求,但是accept and beats 73% cpp submissions.

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        ListNode* rh = head;
        ListNode* ch;
        ListNode* nhead = new ListNode(0);
        nhead->next = head;
        stack<int> record;
        int n;
        while(rh!=NULL)
        {
            ch = rh;
            n=0;
            while(ch!=NULL)
            {
                if(n>=k)
                    break;
                record.push(ch->val);
                n++;ch = ch->next;
            }
            if(n<k)
                break;
            while(rh!=ch)
            {
                rh->val = record.top();
                record.pop();
                rh = rh->next;
            }

        }
        return nhead->next;
    }
};

最優代碼,我是一時沒想起來鏈表反轉,不過他這個遞歸調用,也很大程度簡化了代碼

class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) 
    {
        if(head==NULL || k==1) return head;
        int count=0;
        ListNode* curr=head, *prev=NULL,*next=NULL;
        while(curr)
        {
            curr=curr->next;
            count++;
        }
        if(count < k) return head;
        curr = head;
        int i=0;
        while(curr && i<k)
        {
            next=curr->next;
            curr->next=prev;
            prev=curr;
            curr=next;
            i++;
        }
        head->next=reverseKGroup(curr,k);
        return prev;
    }
};
  1. N-Queens N皇后問題,輸出全部解

“`
class Solution {
public:

bool isvalid(int row,int col,int N,vector<int> &record)//判斷是否能夠放置
{
    for(int i=0;i<N;i++)
    {
        if(record[i] == col || abs(i-row) == abs(record[i]-col))
            return false;
    }
    return true;
}
void print(vector<vector<string>> &result,vector<int> &record,int N)//輸出
{
    ostringstream re;
    vector<string> temp;
    for(int i=0;i<N;i++)
    {
        for(int j=0;j<N;j++)
        {
            if(record[i] == j)
                re<<'Q';
            else
                re<<'.';
        }
        temp.push_back(re.str());
        re.str("");
    }
    result.push_back(temp);
}
vector<vector<string>> solveNQueens(int n) {
    vector<vector<string>> result;
    int row=0,col=0;
    vector<int> record(n,-10000);
    while(row<n)
    {
        while(col<n)
        {
            if(isvalid(row,col,n,record))
            {
                record[row] = col;
                col = 0;
                break;
            }
            else
            {
                col++;
            }
        }
        if(record[row] == -10000)//若這一行沒有放置
        {
            if(row==0)//退到第一行,程序結束
                break;
            else
            {
                --row;   //回退到上一行
                col=record[row] +1;//上一行往右移一列
                record[row] = -10000;//清除上一行的皇后
                continue;
            }
        }
        if(row == n-1)
        {
            print(result,record,n);
            col = record[row]+1;//往右移一列
            record[row] = -10000;//清除本行的皇后
            continue;
        }
        ++row;
    }
    return result;
}

};

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章