ZigZag ConversionThe string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern i...
分类:
其他好文 时间:
2015-04-19 21:18:31
阅读次数:
124
Binary Tree Zigzag Level Order TraversalTotal Accepted:31183Total Submissions:117840My SubmissionsQuestionSolutionGiven a binary tree, return thezigza...
分类:
其他好文 时间:
2015-04-17 21:53:46
阅读次数:
123
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...
分类:
其他好文 时间:
2015-04-17 15:49:24
阅读次数:
144
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 ...
分类:
其他好文 时间:
2015-04-17 10:51:01
阅读次数:
97
描述: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...
分类:
其他好文 时间:
2015-04-16 14:11:13
阅读次数:
132
题目链接:Binary Tree Zigzag Level
Order Traversal
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and a...
分类:
其他好文 时间:
2015-04-16 10:24:56
阅读次数:
116
题目: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...
分类:
其他好文 时间:
2015-04-15 22:53:32
阅读次数:
153
我的Python解答:
"""
Programmer : EOF
Date : 2015.04.14
File : zigzag.py
E-mail : jasonleaster@gmail.com
"""
class Solution:
def convert(self, s, nRows):
leng...
分类:
其他好文 时间:
2015-04-14 18:02:44
阅读次数:
160
[Java]leetcode ZigZag Conversion...
分类:
编程语言 时间:
2015-04-12 13:28:30
阅读次数:
150
一个难度为Easy的题,看了好多人的题解都没想明白,最后使劲想使劲想,才想的差不多。。太弱了,要找不到工作了。。题目描述:The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like t...
分类:
编程语言 时间:
2015-04-12 13:19:23
阅读次数:
156