The RGB color model is an additive system in which each color is defined by the amount of red, green, and blue light emitted. In the RGB scheme, color...
分类:
其他好文 时间:
2015-01-20 23:53:32
阅读次数:
230
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 ...
分类:
其他好文 时间:
2015-01-20 10:29:45
阅读次数:
133
Binary Tree Zigzag Level Order TraversalGiven a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then...
分类:
其他好文 时间:
2015-01-18 18:21:13
阅读次数:
151
这周在公司分享会上分享了《Finding the Right Consumer: Optimizing for Conversion in Display Advertising Campaigns》,下面贴出分享的主要内容。
文章参考于:http://www.cs.cmu.edu/~yandongl/papers/wsdm2012.pdf...
分类:
其他好文 时间:
2015-01-18 15:47:28
阅读次数:
185
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...
分类:
其他好文 时间:
2015-01-17 17:58:07
阅读次数:
199
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...
分类:
其他好文 时间:
2015-01-17 13:51:25
阅读次数:
136
题目:
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 ...
分类:
编程语言 时间:
2015-01-16 16:46:28
阅读次数:
179
ZigZag Conversion输入一串字符,(由上到下再由下向上)Z字形循环排列后,逐行打印输出。例如:输入PAYPALISHIRING 输出PAHNAPLSIIGYIR【我的代码】string convert(string s,int nRows){ string::size_type ...
分类:
其他好文 时间:
2015-01-15 10:44:36
阅读次数:
158
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 ...
分类:
其他好文 时间:
2015-01-14 12:52:20
阅读次数:
176
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/zigzag-conversion/The string "PAYPALISHIRING" is written ...
分类:
编程语言 时间:
2015-01-13 21:10:46
阅读次数:
416