forked from learning-zone/java-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFindMiddleIndex.java
More file actions
29 lines (26 loc) · 680 Bytes
/
FindMiddleIndex.java
File metadata and controls
29 lines (26 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package misc;
public class FindMiddleIndex {
public static void findMiddleIndex(int[] numbers) {
int endIndex = numbers.length - 1;
int startIndex = 0, sumLeft = 0, sumRight = 0;
while (true) {
if (sumLeft > sumRight) {
sumRight += numbers[endIndex--];
} else {
sumLeft += numbers[startIndex++];
}
if (startIndex > endIndex) {
if (sumLeft == sumRight) {
System.out.println("Left Sum: " + sumLeft + "\nRight Sum: " + sumRight);
break;
} else {
System.out.println("Left sum are not equal to right sum");
}
}
}
}
public static void main(String[] args) {
int[] num = { 2, 4, 4, 5, 4, 1 };
findMiddleIndex(num);
}
}