码迷,mamicode.com
首页 > 其他好文 > 详细

zigzag conversion

时间:2015-05-13 06:17:07      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

public class Solution {
    public String convert(String s, int numRows) {
        String res = "";
        if (s.length() < numRows || numRows == 1) {
            return s;
        }

        for (int i = 0; i < numRows; i++) {
            for (int j = i; j < s.length(); j += (2*numRows - 2)) {
                res += s.charAt(j);
                if (i != 0 && i != numRows - 1 && (j + 2*numRows - 2 - 2*i) < s.length()) {
                    res += s.charAt(j + 2*numRows - 2 - 2*i);
                }
            }
            
        }
        return res;
    }
}

 

zigzag conversion

标签:

原文地址:http://www.cnblogs.com/77rousongpai/p/4499246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!