Time Complexity: O(N)
We are not making table itself, but we simulate each index, especially columnIndex
numRows
rowIndex %(numRows-1) == 0
rowIndex % (numRows-1) != 0
gap
, as I noted above core logic
.class Solution {
public:
string convert(string s, int numRows) {
if (numRows == 1) return s;
vector<string> eachRowText(numRows, "");
int columnIndex = 0;
int rowIndex = 0;
int stringIndex = 0;
while (stringIndex < s.length()) {
if (columnIndex % (numRows-1) == 0) {
// All Four
while (rowIndex < numRows) {
if (stringIndex >= s.length()) {
break;
}
eachRowText[rowIndex++].push_back(s[stringIndex++]);
}
rowIndex = 0;
columnIndex++;
} else {
int gap = columnIndex % (numRows-1); // Gap between Below
eachRowText[numRows-1-gap].push_back(s[stringIndex]);
columnIndex++;
stringIndex++;
}
}
string finalString = "";
for (string tmpString : eachRowText) {
finalString.append(tmpString);
}
return finalString;
}
};