leetcodeをブラシする過程で難易度の問題を記録して、自分のやり方と最良のやり方
6086 ワード
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:
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.
最適コードは、チェーンテーブルの反転を一時的に思い出せなかったが、彼のこの再帰呼び出しも、コードを大幅に簡略化した. N-Queens Nクイーンズ問題、出力全解 “` class Solution { public:
};
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;iwhile(nums[i] >0 && nums[i] <= nums.size()&&nums[nums[i] -1]!=nums[i])
swap(nums[nums[i] -1],nums[i]);
}
for(int i=0;iif(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(nbreak;
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 && inext=curr->next;
curr->next=prev;
prev=curr;
curr=next;
i++;
}
head->next=reverseKGroup(curr,k);
return prev;
}
};
bool isvalid(int row,int col,int N,vector &record)//
{
for(int i=0;i> &result,vector &record,int N)//
{
ostringstream re;
vector temp;
for(int i=0;i> solveNQueens(int n) {
vector> result;
int row=0,col=0;
vector record(n,-10000);
while(row
};