[LeetCode]1.Two Sum

简介:

【题目】

Given an array of integers, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2

【分析】

类似于剑指Offer之和为S的两个数字

【代码】

/*********************************
*   日期:2015-01-15
*   作者:SJF0115
*   题目: 1.Two Sum
*   网址:https://oj.leetcode.com/problems/two-sum/
*   结果:AC
*   来源:LeetCode
*   博客:
**********************************/
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

class Solution {
public:
    vector<int> twoSum(vector<int> &numbers, int target) {
        vector<int> result;
        vector<int> num = numbers;
        int count = numbers.size();
        if(numbers.empty()){
            return result;
        }//if
        // 排序
        sort(numbers.begin(),numbers.end());
        // 二分查找变形
        for(int i = 0,j = count-1;i < j;){
            int sum = numbers[i] + numbers[j];
            // 找到目标
            if(sum == target){
                return FindIndex(num,numbers[i],numbers[j]);
            }
            // 当前和大于目标,需要变小一些
            else if(sum > target){
                j--;
            }
            // 当前和小于目标,需要变大一些
            else{
                i++;
            }
        }//for
        return result;
    }
private:
    // 寻找下标
    vector<int> FindIndex(vector<int> &numbers,int num1,int num2){
        int count = numbers.size();
        vector<int> result;
        int index1,index2;
        bool flag1 = false,flag2 = false;
        for(int i = 0;i < count;++i){
            if(flag1 == false && numbers[i] == num1){
                index1 = i+1;
                flag1 = true;
            }
            else if(flag2 == false && numbers[i] == num2){
                index2 = i+1;
                flag2 = true;
            }
        }//for
        // 交换 使index1 < index2
        if(index1 > index2){
            int tmp = index1;
            index1 = index2;
            index2 = tmp;
        }//if
        result.push_back(index1);
        result.push_back(index2);
        return result;
    }
};

int main(){
    Solution solution;
    vector<int> num;
    num.push_back(0);
    num.push_back(4);
    num.push_back(3);
    num.push_back(0);
    //num.push_back(15);
    int target = 0;
    // 查找
    vector<int> vec = solution.twoSum(num,target);
    // 输出
    cout<<"Index1->"<<vec[0]<<" Index2->"<<vec[1]<<endl;
    return 0;
}


目录
相关文章
|
存储 缓存 算法
LeetCode刷题---Two Sum(一)
LeetCode刷题---Two Sum(一)
Leetcode 4. Median of Two Sorted Arrays
题目描述很简单,就是找到两个有序数组合并后的中位数,要求时间复杂度O(log (m+n))。 如果不要去时间复杂度,很容易就想到了归并排序,归并排序的时间复杂度是O(m+n),空间复杂度也是O(m+n),不满足题目要求,其实我开始也不知道怎么做,后来看了别人的博客才知道有个二分法求两个有序数组中第k大数的方法。
41 0
|
存储 C++ Python
LeetCode刷题---Add Two Numbers(一)
LeetCode刷题---Add Two Numbers(一)
|
存储 算法 安全
LeetCode - #2 Add Two Numbers
我们社区从本期开始会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。 不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。
LeetCode - #2 Add Two Numbers
|
存储 算法 安全
LeetCode - #1 Two Sum
我们社区从本期开始会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。 不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。
LeetCode - #1 Two Sum
LeetCode 350. Intersection of Two Arrays II
给定两个数组,编写一个函数来计算它们的交集。
77 0
LeetCode 350. Intersection of Two Arrays II
|
Python
LeetCode 349. Intersection of Two Arrays
给定两个数组,编写一个函数来计算它们的交集。
71 0
LeetCode 349. Intersection of Two Arrays
LeetCode 160. Intersection of Two Linked Lists
编写一个程序,找到两个单链表相交的起始节点。
68 0
LeetCode 160. Intersection of Two Linked Lists
LeetCode 167 Two Sum II - Input array is sorted(输入已排序数组,求其中两个数的和等于给定的数)
给定一个有序数组和一个目标值 找出数组中两个成员,两者之和为目标值,并顺序输出
88 0
LeetCode 21. 合并两个有序链表 Merge Two Sorted Lists
LeetCode 21. 合并两个有序链表 Merge Two Sorted Lists