"ZigZag Conversion" cpp

Source: Internet
Author: User

Topic:

The string is "PAYPALISHIRING" written with 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   NA p L S i i GY   i   R

And then read on line:"PAHNAPLSIIGYIR"

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

String convert (string text, int nRows);

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

Code:

classSolution { Public:    stringConvertstringSintnumrows) {            Const intLen =s.size (); if(Len<numrows | | numrows==1)returns; Vector<Char>ret; Const intINTERVAL =2*numrows-2;  for(intI=0; i<numrows; ++i) {intInterval =2* (Numrows-i)-2;  for(intJ=i; j<len; interval=interval-interval)                    {Ret.push_back (s[j]); J= (interval==interval| | interval==0) ? j+interval:j+interval; }            }            return string(Ret.begin (), Ret.end ()); }};

Tips

Find the regularity of the interval size of each row element in the zigzag string s.

"ZigZag Conversion" cpp

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.