码迷,mamicode.com
首页 >  
搜索关键字:zigzag    ( 480个结果
【leetcode】Binary Tree Zigzag Level Order Traversal
Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then right to left for the next level and al...
分类:其他好文   时间:2014-07-22 22:53:33    阅读次数:229
Binary Tree Zigzag Level Order Traversal
java很给力逆序用了Colletcions.reverse();/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; ...
分类:其他好文   时间:2014-07-22 00:04:35    阅读次数:154
【leetcode刷题笔记】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 fo...
分类:其他好文   时间:2014-07-21 09:31:07    阅读次数:186
LeetCode :: Binary Tree Zigzag Level Order Traversal [tree, BFS]
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 alternate between). For example: Given binary...
分类:其他好文   时间:2014-07-20 22:41:23    阅读次数:303
LeetCode——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...
分类:其他好文   时间:2014-07-08 17:42:31    阅读次数:192
[leetcode] 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 ...
分类:其他好文   时间:2014-07-03 19:14:34    阅读次数:206
【LeetCode】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...
分类:其他好文   时间:2014-06-30 00:07:36    阅读次数:268
[leetcode] 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 ...
分类:其他好文   时间:2014-06-27 12:40:25    阅读次数:187
leetcode--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 fo...
分类:其他好文   时间:2014-06-26 14:42:23    阅读次数:164
Zigzag数组
首先了解下zigzag数组,如下图,由一个矩阵的对角线,数字按一定规律递增 求nxn的Zigzag数组? 代码如下: /* 0 1 5 6 14 15 27 28 2 4 7 13 16 26 29 42 3 8 12 17 25 30 41...
分类:其他好文   时间:2014-06-26 11:54:03    阅读次数:233
480条   上一页 1 ... 44 45 46 47 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!