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

leetcode-6 ZigZag Conversion

时间:2015-04-01 15:23:45      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:



问题描述:

The string "PAYPALISHIRING" is written in a zigzag pattern on agiven number of rows like this: (you may want to display this pattern in afixed 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"

Write the codethat will take a string and make this conversion given a number of rows:

stringconvert(string text, int nRows);

convert("PAYPALISHIRING", 3) should return "PAHNAPLSIIGYIR".



解法一:公式法


/*
   0       8        16
   1     7 9      15
   2   6   10   14  
   3 5     11 13
   4       12

*/


public class Solution {
    public String convert(String s, int nRows) {
		
		//参数判断
		if(s == null || s.length() == 0 || nRows <= 1)
		{
			return s;
		}
		
		char[] strarr = s.toCharArray();
		StringBuilder strBuilder = new StringBuilder();
		boolean flag = true;
		int temp_index = 0;

		for(int i = 0 ; i < nRows; i++)
		{
			flag = true;
			for(int j = 0; flag ; j++)
			{
				flag = false;
				if( i == 0 || i == nRows - 1)//第一行和最后一行情况
				{
					temp_index = 2 * j * (nRows - 1) + i;
				}
				else 
				{
					if((j & 0x1) == 0)//偶数情况
					{
						temp_index = i + j * (nRows - 1);
					}
					else
					{
						temp_index = i + 2 * (nRows - 1 - i) + (j / 2 * 2) * (nRows - 1);
					}
				}
				
				if(temp_index < s.length())
				{
					strBuilder.append(strarr[temp_index]);
					flag = true;
				}		
			}
		}
        return strBuilder.toString();
    }
}



解法二:列举所有可能


public class Solution {
    public String convert(String s, int nRows) {
		
		//参数判断
		if(s == null || s.length() == 0 || nRows <= 1)
		{
			return s;
		}
		
		char[] strarr = s.toCharArray();
		StringBuilder strBuilder = new StringBuilder();
		boolean flag = true;
		int temp_index = 0;

		for(int i = 0 ; i < nRows; i++)
		{
			flag = true;
			for(int j = 0; flag ; j++)
			{
				flag = false;
				if( i == 0 || i == nRows - 1)//第一行和最后一行情况
				{
					temp_index = 2 * j * (nRows - 1) + i;
					if(temp_index < s.length())
					{
						strBuilder.append(strarr[temp_index]);
						flag = true;
					}	
				}
				else 
				{
					temp_index = 2 * j * (nRows - 1) - i;
					if ((temp_index > 0)&&(temp_index < s.length()))
					{
						strBuilder.append(strarr[temp_index]);
						flag = true;
					}
						
					temp_index = 2 * j * (nRows - 1) + i;
					if(temp_index < s.length())
					{
						strBuilder.append(strarr[temp_index]);
						flag = true;
					}
				}
			}
		}
        return strBuilder.toString();
    }
}


leetcode-6 ZigZag Conversion

标签:

原文地址:http://blog.csdn.net/woliuyunyicai/article/details/44806937

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