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 solve the problem of the nearest sum of three numbers by 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 shows you how java solves the closest sum of three problems. The content is simple and easy to understand. It is clearly organized. I hope it can help you solve your doubts. Let Xiaobian take you to study and learn about "java how to solve the closest sum of three problems."

Given an array of n integers nums and a target value target. Find three integers in nums whose sum is closest to target. Return the sum of these three numbers. Assume that there is only one answer for each set of inputs.

For example, given the array nums = [-1,2,1,-4], and target = 1. The sum of the three numbers closest to target is 2. (-1 + 2 + 1 = 2).

Analysis:

The second line sorts the array from smallest to largest, and then the fifth line has num[i]!= num[i-1], he is to prevent duplication, for example, sorted array [-8,-1,-1, 2,5] then he will start from the first-1 to find [-1,-1, 2] the sum of this group is 0, if there is no code above, then he can also find [-1,-1, 2] from the second-1, so repeated. Then the following is relatively simple, the sum of three numbers minus one of them, the rest is the sum of the other two numbers, because it is ordered, so here is from both ends to the middle, if found directly into the mList, and then look for, if less than sum, indicating that the sum of two numbers is small, so lo++, because here is ordered, from both ends to the middle, so lo can only be added can not be subtracted, hi can only be subtracted can not be added. When the sum of two numbers is greater than sum, hi--.

What are the advantages of Java 1. Simple, just understand the basic concepts, you can write applications suitable for all situations;2. Object Oriented;3. Java is a web-oriented language;4. Robustness, java provides automatic garbage collection for memory management, preventing programmers from making mistakes when managing memory. 5. Security, Java for network, distributed environments must prevent virus intrusion. 6. Architecture-neutral, it runs on any processor as long as the Java runtime system is installed. 7. Portability: Java can be easily ported to different machines on the network. 8. Java interpreter directly interprets and executes Java bytecode.

The above is about "java how to solve the closest sum of three problems" content, if the article is helpful to you and feel well written, please share with your friends to learn new knowledge, if you want to know more related knowledge content, please pay more attention to the industry information channel.

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