每天一道在线编程题
问题: ZigZag Conversion
The string
"PAYPALISHIRING"
is written in a zigzag pattern on a given number of rows like this: (you may want to display t his pattern in a fixed font for better legibility)
总体分析
本问题实际上就是看规律的题目,从输入是如何映射到输出的。不过其涉及到字符串操作的一些细节。
具体实现(C 语言)
计算字符串长度的函数:int length(char *s)
实现目的的 convert 函数:
【注意】本文属于作者原创,欢迎转载!转载时请注明以下内容:
(转载自)ShengChangJian's Blog编程技术文章地址:
https://ShengChangJian.github.io/2016/09/ZigZag-Conversion.html
主页地址:https://shengchangjian.github.io/