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"

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

string convert(string s, int numRows);

样例

Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:

P     I    N
A   L S  I G
Y A   H R
P     I

解析

给定一字符串和行数,将其Z字形排列,然后输出按行读出的结果。

最先想到的就是用二维数组存储,然后按行依次读取输出 ,数组的行数就是numRows,列数为\left \lceil \frac{len}{2} \right \rceil,即\frac{len+1}{2},其中len是字符串的长度,原因如下:

观察样例中的Z字图形,发现它具有周期性,每numRows-1列是一个周期,一个周期可以容纳2(numRows-1)个字符,所以要想容纳len个字符,就需要\frac{len+1}{2}列。

class Solution {
public:
    string convert(string s, int numRows) {
    int len=s.length();
    string ans="";
	if(len==0||numRows==1) return s;
	memset(cnt,100,sizof(cnt)); //初始化数组
	int i=0,j=0;                //i标记行,j标记列
	cnt[0][0]=int(s[0]-'A');    //用数字存放首字母 
	len--;
	while(len)
	{
		for(i=1;(i<numRows)&&len;i++)     //竖直的边
		{
			cnt[i][j]=int(s[s.length()-len]-'A');
			len--;
		}
		i--;                      //返回到最后一行
		while(i&&len)             //斜边
		{
			j++;
			i--;
			cnt[i][j]=int(s[s.length()-len]-'A');
			len--;
		}
	}

	for(int m=0;m<numRows;m++)
	{
		for(int n=0;n<=j;n++)
		{	
		if(cnt[m][n]!=100)	ans=ans+char(cnt[m][n]+'A');
		}
	}
	return ans;
    }
};

这种方法耗时较长,之后再写一种找规律的 解法。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值