-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathZigZagString.java
93 lines (86 loc) · 3.1 KB
/
ZigZagString.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.interviewbit.string_parsing;
import com.util.LogUtil;
/**
* https://www.interviewbit.com/problems/zigzag-string/
* <p>
* The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
* <p>
* P.......A........H.......N
* ..A..P....L....S....I...I....G
* ....Y.........I........R
* And then read line by line: PAHNAPLSIIGYIR
* Write the code that will take a string and make this conversion given a number of rows:
* <p>
* string convert(string text, int nRows);
* convert("PAYPALISHIRING", 3) should return "PAHNAPLSIIGYIR"
* **Example 2 : **
* ABCD, 2 can be written as
* <p>
* A....C
* ...B....D
* and hence the answer would be ACBD.
*
* @author neeraj on 2019-08-03
* Copyright (c) 2019, data-structures.
* All rights reserved.
*/
public class ZigZagString {
public static void main(String[] args) {
zigZagString("PAYPALISHIRING", 3);
zigZagString("ABCD", 2);
zigZagString("ABCDEFGHIJKL", 3);
zigZagString("ABCDEFGHIJKL", 4);
// zigZagString("B", 1);
}
public static void zigZagString(String input, int Rows) {
LogUtil.logIt("ZigZag String of [" + input + "] is " + convert(input, Rows));
}
public static String convert(String input, int Rows) {
if (input.length() <= 1) {
return input;
}
String[] arr = input.split("");
StringBuffer result = new StringBuffer();
// This will be used to build the formula, and it should always start from 0 based index;
int tempRows = 0;
int zigZagCounter = 0;
for (int i = 0; i < Rows; i++) {
tempRows = i;
zigZagCounter = 0;
for (int j = i; j < arr.length; ) {
result.append(arr[j]).append(" , ");
j += findGap(Rows, tempRows, zigZagCounter++);
}
}
return result.toString();
}
/**
* So finding gap solution is simple
* Firstly if you are on 1st or Last Row, the gap between 1st and next item will be
* (currentRow == FIRST_ROW || currentRow == LAST_ROW) = 2 * (totalRows -1); // Why minus one bcoz we are taking input with 0 based index.
* <p>
* Now if currentRow is in middle we have to identify that whether we are going downwards \/ or upwards /\
* * if you are going downward than the gap will be more as more items will be present to push in below rows
* * So (zigZagCounter is even) then
* gap = 2 * ( (totalRows - 1) - currentRow)
* <p>
* if zigZagCounter is odd then
* <p>
* gap = 2 * currentRow
*
* @param totalRows
* @param currentRow
* @param zigZagCounter
* @return
*/
public static int findGap(int totalRows, int currentRow, int zigZagCounter) {
if (currentRow == 0 || currentRow == totalRows - 1) {
return 2 * (totalRows - 1);
}
if (zigZagCounter % 2 == 0) {
return 2 * (totalRows - currentRow - 1);
}
// For Odd Counter
return 2 * (currentRow);
}
}