201604-1 折点计数 Java

思路:
这个题要小心考虑不全。左右两边都比这个数小 或者 左右两边都比这个数大

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int a[] = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		int count = 0;
		//左右两边都比这个数小或者都大
		for(int j=1;j<n-1;j++) {
			if(a[j]>a[j-1] && a[j]>a[j+1]) {
				count++;
			}
			else if(a[j]<a[j-1] && a[j]<a[j+1]) {
				count++;
			}
		}
		sc.close();
		System.out.println(count);
	}

}

原文地址:https://www.cnblogs.com/yu-jiawei/p/12356152.html