首页 > 其他 > 详细

两数之和

时间:2019-09-24 20:32:32      阅读:110      评论:0      收藏:0      [点我收藏+]

两数之和

 

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 1 using System;
 2 namespace Wrox
 3 {
 4     public class TwoNum
 5     {
 6         static void Main()
 7         {
 8             Solution s = new Solution();
 9             int[] result = new int[2];
10             int[] nums = new int[10];
11             int target = 9;
12             for (int i = 0; i < 10; i++)
13             {
14                 nums[i] = int.Parse(Console.ReadLine());
15             }
16             result = s.solueTwoNum(nums, target);
17             Console.WriteLine("[" + result[0] + "," + result[1] + "]");
18             Console.ReadLine();
19             return;
20         }
21     }
22     public class Solution
23     {
24         public int[] solueTwoNum(int[] nums, int target)
25         {
26             int Length = nums.Length;
27             int[] result = new int[2];
28             int flag = 1;
29             for (int i = 0; i < Length - 1; i++)
30             {
31                 for (int j = 1; j < Length; j++)
32                 {
33                     if (nums[i] + nums[j] == target)
34                     {
35                         result[0] = nums[i];
36                         result[1] = nums[j];
37                         flag = 0;
38                     }
39                     if (flag == 0)
40                         break;
41                 }
42                 if (flag == 0)
43                     break;
44             }
45             return result;
46         }
47     }
48 }

技术分享图片

 

两数之和

原文:https://www.cnblogs.com/asahiLikka/p/11580761.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!