其实叫“N 字形变换”更形象
第一版代码,在二维数组中模拟打印过程,但是时间和空间效率都很差,都是 n2
string convert(string s, int numRows) {
int len = s.size();
// 如果只有一行或者只有一列则直接输出
if (numRows == 1 || numRows >= len) return s;
// 计算每个周期占用的字符数量
int cycle = numRows + numRows - 2;
int column = (1 + numRows - 2) * len / cycle + len % cycle;
vector<string> maps(numRows, string(column, 0));
for (int x = 0, y = 0, k = 0; k < len; k++) {
maps[x][y] = s[k];
if (k % cycle + 1 < numRows) x++;
else {
x--;
y++;
}
}
string res;
for (string str : maps) for (char ch : str) if (ch)res += ch;
return res;
}
标签:numRows,ch,字形,变换,len,力扣,int,cycle,string
From: https://www.cnblogs.com/yaocy/p/18340164