刷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;
}

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值