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 ...
分类:
其他好文 时间:
2019-10-27 10:18:05
阅读次数:
91
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 ...
分类:
其他好文 时间:
2019-10-22 12:51:51
阅读次数:
59
题意翻译 Zig和Zag正在玩文字游戏。Zig说了一个字母,而Zag说了一个以该字母开头的单词。但是这个词需要出现在给出的单词列表中,并且被是相同首字母中使用的次数最少的单词。如果单词的选择不明确(即相同首字母中使用的次数最少的单词不止一个),那么Zag会选择字典序较小的字母。输入保证对于每个Zig ...
分类:
其他好文 时间:
2019-09-15 12:52:00
阅读次数:
80
BSTrootleafinsert.txt Consider an initially empty BST and the sequence of values 1 2 3 4 5 6. Show the tree resulting from an alternate at-root-insert ...
分类:
其他好文 时间:
2019-08-26 23:07:52
阅读次数:
93
class Solution { public int movesToMakeZigzag(int[] nums) { int temp1[] = new int[nums.length]; int temp2[] = new int[nums.length]; for (int i = 0; i ...
分类:
编程语言 时间:
2019-08-10 19:26:58
阅读次数:
179
1 #define _for(i,a,b) for(int i = (a);i & nums) 9 { 10 int rnt1 = 0; 11 int rnt2 = 0; 12 13 _for(i,1,nums.size()) 14 { 15 ... ...
分类:
编程语言 时间:
2019-08-04 13:20:55
阅读次数:
113
https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/ Medium Medium Medium Given a binary tree, return the zigzag level order traver ...
分类:
其他好文 时间:
2019-07-15 19:55:58
阅读次数:
133
"题面" 解析 我们先考虑一下加一条边(x,y,z)会成什么亚子: (还有很多边不画了...) 然后我们把这个图单独拿出来: 我们可以发现,对于最小生成树的贡献, 它是等价于下面这张图的(因为连通性一样): 而同理,最前面的图也可以变成: 所以,我们只需要连三条边$(x,y,z),(x,x+1,z+ ...
分类:
其他好文 时间:
2019-07-14 18:05:25
阅读次数:
103
问题描述 We have a graph with N vertices, numbered 0 through N ?1. Edges are yet to be added. We will process Q queries to add edges. In the i th (1≦ i ≦ ...
分类:
其他好文 时间:
2019-07-14 14:49:03
阅读次数:
91
package homework; public class Main { public String convert(String s, int numRows) { int length = s.length(), x = 0, y = 0; String arr[][] = new Strin ...
分类:
其他好文 时间:
2019-07-08 10:39:52
阅读次数:
103