Leetcode the Sum

Source: Internet
Author: User

1. Topics


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

The function twosum should return indices of the numbers such that they add up to the target, where index1 must is Les S than Index2. Please note that your returned answers (both Index1 and INDEX2) is not zero-based.

You may assume this each input would has exactly one solution.

Input: numbers={2, 7, one, target=9
Output: index1=1, index2=2


2. One solution
typedef struct NODE{INT Originalindex;int Val;node () {};node (int index, int v): Originalindex (Index), Val (v) {}} Node;bool Compare (const node& A, const node& b) {return a.val < B.val;} Class Solution {public:        vector<int> twosum (vector<int> &numbers, int target) {       Vector<int  > Result;int length = numbers.size ();vector<node> nums (length); for (int i = 0; i < numbers.size (); ++i) {nums[i] = Node (i, numbers[i]);} Sort (Nums.begin (), nums.end (), compare), int left = 0;int right = Length-1;while (left < right) {int sum = Nums[left].va L + nums[right].val;if (sum = = target) {result.push_back (min (nums[left].originalindex + 1, Nums[right].originalindex + 1) ); Result.push_back (max (Nums[left].originalindex + 1, Nums[right].originalindex + 1); break;} else if (sum < target) {left++;} else{right--;}} return result;}    ;


Idea: First sort, then add and end to judge, if too small, the left Mark Index to the right to move one, if too big, the right mark Index to the left to move until found.


http://www.waitingfy.com/archives/1577

Leetcode the Sum

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.