LeetCode https://leetcode.cn/problems/zigzag-conversion/
题目描述
将一个给定字符串s根据给定的行数 numRows,以从上往下、从左到右进行N字形排列。
思路
使用2维数组模拟
代码
1 | typedef std::vector<std::string> Matrix; |
LeetCode https://leetcode.cn/problems/zigzag-conversion/
将一个给定字符串s根据给定的行数 numRows,以从上往下、从左到右进行N字形排列。
使用2维数组模拟
1 | typedef std::vector<std::string> Matrix; |