-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZigzagArray_Q5.java
77 lines (63 loc) · 2.31 KB
/
ZigzagArray_Q5.java
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
5. Array in Java:
Printing an array into Zigzag fashion. Suppose you were given an array of integers, and you are told to sort the integers in a zigzag pattern. In general, in a zigzag pattern, the first integer is less than the second
integer, which is greater than the third integer, which is less than the fourth integer, and so on. Hence, the converted array should be in the form of e1 < e2 > e3 < e4 > e5 < e6.
Test cases: Input 1:
7
4 3 7 8 6 2 1
Output 1:
3 7 4 8 2 6 1
Input 2:
4
1 4 3 2
Output 2:
1 4 2 3
*/
import java.util.Scanner;
public class ZigzagArray_Q5 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input array size
System.out.print("Enter the size of the array: ");
int n = scanner.nextInt();
// Input array elements
int[] arr = new int[n];
System.out.println("Enter the array elements:");
for (int i = 0; i < n; i++) {
arr[i] = scanner.nextInt();
}
// Convert array to zigzag pattern
zigzagSort_Q5(arr);
// Display the zigzag array
System.out.println("Array in zigzag pattern:");
for (int i = 0; i < n; i++) {
System.out.print(arr[i] + " ");
}
scanner.close();
}
// Function to sort array in zigzag fashion
private static void zigzagSort_Q5(int[] arr) {
boolean flag = true; // true means '<' expected, false means '>' expected
for (int i = 0; i < arr.length - 1; i++) {
if (flag) { // '<' relation expected
// If current element is greater than next element, swap them
if (arr[i] > arr[i + 1]) {
swap_Q5(arr, i, i + 1);
}
} else { // '>' relation expected
// If current element is less than next element, swap them
if (arr[i] < arr[i + 1]) {
swap_Q5(arr, i, i + 1);
}
}
// Flip the flag for next iteration
flag = !flag;
}
}
// Helper function to swap two elements in an array
private static void swap_Q5(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}