Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the Sum of two numbers in java

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces java how to achieve the sum of two numbers, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

Topic description

Given an array of integers nums and a target value target, please find the two integers in the array that are the target values and return their array subscript.

You can assume that each input corresponds to only one answer. However, you cannot reuse the same elements in this array.

Example:

Given nums = [2,7,11,15], target = 9

Because nums [0] + nums [1] = 2 + 7 = 9, return to the solution of [0,1]

Tags: hash mapping

The problem itself can be easily solved by violent traversal, and the time complexity is O (N2).

Since the time complexity of hash search is O (1), the hash container map can be used to reduce the time complexity.

The traversal array nums,i is the current subscript, and each value determines whether the key value of target-nums [I] exists in map.

If it exists, two values are found. If it does not exist, the current (nums [I], I) is stored in map, and continue traversing until it is found.

Throw an exception if there is no result in the end

Time complexity: O (n)

Code class Solution {public int [] twoSum (int [] nums, int target) {Map map = new HashMap (); for (int I = 0; I

< nums.length; i++) { if(map.containsKey(target - nums[i])) { return new int[] {map.get(target-nums[i]),i}; } map.put(nums[i], i); } throw new IllegalArgumentException("No two sum solution"); }}画解

Thank you for reading this article carefully. I hope the article "how to achieve the sum of two numbers in java" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report