当前位置:网站首页>Searching for single element in dichotomy
Searching for single element in dichotomy
2022-06-30 14:40:00 【Douglas_ LT】
A daily topic ing, Today is a day medium topic 540. Single Element in a Sorted Array
class Solution {
public:
int singleNonDuplicate(vector<int>& nums) {
int l=0,r=nums.size()-1;
while(l<r){
int mid=(l+r)/2;
if(mid%2==1){
mid--;
}
if(nums[mid]==nums[mid+1]){
l=mid+2;
}
else{
r=mid;
}
}
return nums[r];
}
};
边栏推荐
- Laravel8 custom log directory, rename
- Laravel RBAC laravel permission use
- Mysql database foundation: stored procedures and functions
- NoViableAltException([email protected][])
- notepad正则删除关键词所在行
- [buuctf] [actf2020 freshman competition]exec1
- Small exercise of process and signal
- ES6 notes
- Details of gets, fgetc, fgets, Getc, getchar, putc, fputc, putchar, puts, fputs functions
- 2021-07-15Caused by: org. quartz. ObjectAlreadyExistsException: Unable to store Job : ‘DEFAULT. TASK_ 1‘
猜你喜欢
![[geek challenge 2019] PHP problem solving record](/img/bf/038082e8ee1c91eaf6e35add39f760.jpg)
[geek challenge 2019] PHP problem solving record

After the MySQL service on the local computer is started and stopped, some services will automatically stop when they are not used by other services or programs

Zend studio how to import an existing project

V3 03_ Getting started

ES6 notes

Querywrapper in mybaits plus

【BUUCTF】 EasySql
![[extensive reading of papers] multimodal attribute extraction](/img/ec/546c107ac0d31deded7ca94fdf0e2d.jpg)
[extensive reading of papers] multimodal attribute extraction

How to realize selective screen recording for EV screen recording

【BUUCTF】 Have Fun
随机推荐
Judgment of deep learning experiment results
Meaning of while (~scanf ("%d%d", & A, & B))
Greedy two-dimensional array sorting
About the problems encountered when using the timer class to stop with a button (why does the QPushButton (for the first time) need to be clicked twice to respond?)
Add attributes to multimode
[extensive reading of papers] attributes guided facial image completion
Upgrade composer self update
PHP conditional operator
Shangpinhui knowledge points of large e-commerce projects
PHP multidimensional array sorting
Cost forecast of PMP (BAC, EAC, etc)
ES6 notes
Chapter 13 signal (III) - example demonstration
[buuctf] [actf2020 freshman competition]include
PS cutting height 1px, Y-axis tiling background image problem
Laravel artist command error
V3_ Chrome extended Chinese translation document V3 directory
Shell programming overview
Go sync. WaitGroup
Summary of FTP network protocol learning