国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

leecode 解題總結(jié):35. Search Insert Position

2019-11-10 19:07:59
字體:
供稿:網(wǎng)友
#include <iostream>#include <stdio.h>#include <vector>using namespace std;/*問題:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.You may assume no duplicates in the array.Here are few examples.[1,3,5,6], 5 → 2[1,3,5,6], 2 → 1[1,3,5,6], 7 → 4[1,3,5,6], 0 → 0分析:這是二分查找的lowwer_bound的問題。輸入:4 51 3 5 64 21 3 5 64 71 3 5 64 01 3 5 6輸出2140關鍵:1 lowwer_bound:		//low == high時,如果找到,就返回		if(nums.at(low) >= target)		{			return low;		}		//說明是數(shù)組最后一個元素,返回low+1		else		{			return low + 1;		}*/class Solution {public:	int lower_bound(vector<int>& nums , int target)	{		if(nums.empty())		{			return -1;		}		int low = 0;		int high = nums.size() - 1;		int mid;		while(low < high)		{			mid  = low + (high - low) / 2;			//中間大于目標值,目標值,mid可能是結(jié)果,繼續(xù)在左半部分尋找			if(nums.at(mid) >= target)			{				high = mid;			}			//中間值 < 目標值,mid不可能是結(jié)果,在右半部分尋找			else			{				low = mid + 1;			}		}		//low == high時,如果找到,就返回		if(nums.at(low) >= target)		{			return low;		}		//說明是數(shù)組最后一個元素,返回low+1		else		{			return low + 1;		}	}    int searchInsert(vector<int>& nums, int target) {		int high = lower_bound(nums , target);		return high;    }};void PRocess(){	int num ;	int value;	vector<int> nums;	int target;	Solution solution;	vector<int> results;	while(cin >> num >> target)	{		nums.clear();		for(int i  = 0 ; i < num ; i++)		{			cin >> value;			nums.push_back(value);		}		int result = solution.searchInsert(nums , target);		cout << result << endl;	}}int main(int argc , char* argv[]){	process();	getchar();	return 0;}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 土默特右旗| 都昌县| 鸡泽县| 宝兴县| 平谷区| 临江市| 衡南县| 沂南县| 布尔津县| 泾阳县| 通辽市| 奇台县| 长岛县| 五家渠市| 冕宁县| 静安区| 长乐市| 嘉祥县| 轮台县| 涿鹿县| 缙云县| 皋兰县| 江城| 元氏县| 内江市| 陵川县| 贵港市| 丰城市| 灵台县| 通江县| 定日县| 舒城县| 贵州省| 博乐市| 娱乐| 新平| 南宁市| 祁阳县| 万山特区| 诸暨市| 忻州市|