LeetCode Monotonic Array【Easy】
An array is monotonic if it is either monotone increasing or monotone decreasing.
An array A is monotone increasing if for all i <= j, A[i] <= A[j]. An array A is monotone decreasing if for all i <= j, A[i] >= A[j].
Return true if and only if the given array A is monotonic.
Example 1:
Input: [1,2,2,3]
Output: true
Example 2:
Input: [6,5,4,4]
Output: true
Example 3:
Input: [1,3,2]
Output: false
Example 4:
Input: [1,2,4,5]
Output: true
Example 5:
Example 5:
Input: [1,1,1]
Output: true
Note:
- 1 <= A.length <= 50000
- -100000 <= A[i] <= 100000
解決
該題主要是求給定一個(gè)數(shù)組,判斷該數(shù)組是否是單調(diào)數(shù)組,這里給出兩種解決方案,其中方案二為遞歸方法。
代碼
常規(guī)方案
/**
* 常規(guī)方案
* @param A
* @return
*/
public boolean isMonotonic(int[] A) {
//ascStatus 遞增 默認(rèn)true
//descStatus 遞減 默認(rèn)true
boolean ascStatus = true;
boolean descStatus = true;
if (A.length == 1||A.length==0) {
return true;
}
//循環(huán)內(nèi)判斷遞增或者遞減
for (int i = 0; i < A.length - 1; i++) {
if (A[i] < A[i + 1]) {
ascStatus = false;
}
if (A[i] > A[i + 1]) {
descStatus = false;
}
}
return (ascStatus||descStatus);
}
遞歸方案
/**
* 遞歸方案
* @param A
* @return
*/
public boolean isMonotonic(int[] A) {
int len = A.length;
return isDecrease(A,len)||isIncrease(A,len);
}
/**
* 遞增判斷 遞歸
* @param A
* @param len
* @return
*/
public boolean isIncrease(int[] A,int len){
if(len==1){
return true;
}
return (A[len-2]<=A[len-1]&&isIncrease(A,len-1));
}
/**
* 遞減判斷 遞歸
* @param A
* @param len
* @return
*/
public boolean isDecrease(int[] A,int len){
if(len==1){
return true;
}
return (A[len-2]>=A[len-1]&&isDecrease(A,len-1));
}