• 【JAVA、C++】LeetCode 006 ZigZag Conversion


    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   A   H   N
    A P L S I I G
    Y   I   R
    

    And then read line by line: "PAHNAPLSIIGYIR"

    解题思路:

    观察题目,靠眼力寻找规律即可。如果没有读懂ZigZag的话,请移步

    http://blog.csdn.net/zhouworld16/article/details/14121477

    java实现:

    static public String convert(String s, int nRows) {
            if (s == null || s.length() <= nRows || nRows <= 1)
                return s;
            
            StringBuffer sb = new StringBuffer();
            
            for (int i = 0; i < s.length(); i += (nRows - 1) * 2) 
                sb.append(s.charAt(i));
            
            for (int i = 1; i < nRows - 1; i++) {
                for (int j = i; j < s.length(); j += (nRows - 1) * 2) {
                    sb.append(s.charAt(j));
                    if (j + (nRows - i - 1) * 2 < s.length()) {
                        sb.append(s.charAt(j + (nRows - i - 1) * 2));
                    }
                }
            }
            
            for (int i = nRows - 1; i < s.length(); i += (nRows - 1) * 2) 
                sb.append(s.charAt(i));
            
            return new String(sb);
        }
    

     C++实现如下:

     1 #include<string>
     2 using namespace std;
     3 class Solution {
     4 public:
     5     string convert(string s, int numRows) {
     6         if (s.length() <= numRows || numRows <= 1)
     7             return s;
     8 
     9         string sb;
    10         for (int i = 0; i < s.length(); i += (numRows - 1) * 2)
    11             sb+=s[i];
    12         for (int i = 1; i < numRows - 1; i++) {
    13             for (int j = i; j < s.length(); j += (numRows - 1) * 2) {
    14                 sb+=s[j];
    15                 if (j + (numRows - i - 1) * 2 < s.length()) 
    16                     sb+=s[j + (numRows - i - 1) * 2];
    17             }
    18         }
    19 
    20         for (int i = numRows - 1; i < s.length(); i += (numRows - 1) * 2)
    21             sb += s[i];
    22         return sb;
    23     }
    24 };
  • 相关阅读:
    使用没有初始化变量很危险
    openssl动态库编译
    数据库水平切分及问题
    用dpkg命令制作deb包方法总结
    centOS安装mysql---glibc方式
    RabbitMQ常用命令
    shell脚本报错:-bash: xxx: /bin/bash^M: bad interpreter: No such file or directory
    mysql主从复制实现数据库同步
    CentOS 7.0下使用yum安装MySQL
    RabbitMQ的远程Web管理与监控工具
  • 原文地址:https://www.cnblogs.com/tonyluis/p/4456244.html
Copyright © 2020-2023  润新知