Find the index and value of the first number that is larger than the left and smaller than the right number

Source: Internet
Author: User

Package Com.lianxi; /** * Find the index and value of the first number larger than the left, smaller than the right number * * @author Administrator * */public class found {/** * @param args * * * public static void Main (string[] args) {//TODO auto-generated method Stub int[] A = {1, 6, 4, 5, 6,6, 9, km}; GetIndex (a);} public stat IC void GetIndex (int[] a) {for (int i = 1; i < a.length-1, i++) {Boolean flag = true; for (int j = 0; J < a.length ; J + +) {if (J < i) {//i left element if (A[j] >= a[i]) {flag = false; break;}} if (J > i) {if (A[j] <= a[i]) {flag = Fals E Break }} if (flag) {SYSTEM.OUT.PRINTLN (the first qualifying element is: "+a[i]+"; Index: "+i); break;}} } }

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.