剑指offer-和为s的两个数
Posted 清心lh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-和为s的两个数相关的知识,希望对你有一定的参考价值。
题目描述
输入一个递增排序的数组和一个数字S,在数组中查找两个数,使得他们的和正好是S,如果有多对数字的和等于S,输出两个数的乘积最小的。
输出描述:
对应每个测试案例,输出两个数,小的先输出。
class Solution { public: vector<int> FindNumbersWithSum(vector<int> array,int sum) { vector<int> result; int len = array.size(); int mul = 10000; for(int i=0;i<len;i++){ int temp = sum-array[i]; for(int j=len-1;j>i;j--){ if(temp==array[j]){ if(array[i]*array[j]<mul){ result.clear(); result.push_back(array[i]); result.push_back(array[j]); mul = array[i]*array[j]; } } } } return result; } };
以上是关于剑指offer-和为s的两个数的主要内容,如果未能解决你的问题,请参考以下文章