美文网首页
LeetCode 题解|6. Z 字形变换

LeetCode 题解|6. Z 字形变换

作者: 敦敦实实 | 来源:发表于2022-10-09 10:12 被阅读0次
/**
 * @param {string} s
 * @param {number} numRows
 * @return {string}
 */
var convert = function(s, numRows) {
  // 存储结果
  const rows = [];
  // 指针下一次是加一还是减一
  let add = false;
  // 指针位置
  let pointer = 0;
  for (let index = 0; index < s.length; index++) {
    if (!rows[pointer]) {
      rows[pointer] = "";
    }
    rows[pointer] += s[index] || "";
    if (pointer === 0 || pointer === numRows - 1) {
      // 指针反转
      add = !add;
    }
    pointer += add ? 1 : -1;
  }
  return rows.join("");
};

本文由一文多发运营工具平台 EaseWriting 发布

相关文章

  • Python算法-模拟过程实现算法

    6. Z 字形变换[https://leetcode-cn.com/problems/zigzag-convers...

  • LeetCode 题解|6. Z 字形变换

    本文由一文多发运营工具平台 EaseWriting[https://easewriting.com?from=bd...

  • LeetCode 6. Z 字形变换

    6. Z 字形变换 题目 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。比如输入字符串为...

  • leetcode 6. Z 字形变换

    https://leetcode-cn.com/problems/zigzag-conversion/ 做这道题,...

  • LeetCode 6. Z 字形变换

    题目 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 示例:输入: s = "LEETC...

  • [leetcode]6. Z 字形变换

    题目描述: 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。比如输入字符串为 "LEETC...

  • LeetCode 6. Z 字形变换

    6. Z 字形变换 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。比如输入字符串为 "L...

  • LeetCode 6. Z 字形变换

    将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 "LEETCODEIS...

  • [LeetCode][M] 6. Z 字形变换

    将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 "LEETCODEIS...

  • LeetCode 6. Z 字形变换(中等)

    将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 "LEETCODEIS...

网友评论

      本文标题:LeetCode 题解|6. Z 字形变换

      本文链接:https://www.haomeiwen.com/subject/opsgartx.html