namespace 自动生成当天文档{ class Program { string Paths = ""; static void Main(string[] args) { string root = @"D:\2"; DirectoryInfo Path = Directory.CreateD ...
分类:
其他好文 时间:
2017-10-13 23:52:23
阅读次数:
264
Description There are N cities in a country, and there is one and only one simple path between each pair of cities. A merchant has chosen some paths a ...
分类:
其他好文 时间:
2017-10-13 23:42:38
阅读次数:
273
题意: 有F个牧场,1<=F<=5000,现在一个牧群经常需要从一个牧场迁移到另一个牧场。奶牛们已经厌烦老是走同一条路,所以有必要再新修几条路,这样它们从一个牧场迁移到另一个牧场时总是可以选择至少两条独立的路。现在F个牧场的任何两个牧场之间已经至少有一条路了,奶牛们需要至少有两条。给定现有的R条直接 ...
分类:
其他好文 时间:
2017-10-11 12:45:54
阅读次数:
115
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. For example:Given the below binary tree and sum ...
分类:
其他好文 时间:
2017-10-09 00:26:27
阅读次数:
180
Given a binary tree, return all root-to-leaf paths. Example Given the following binary tree: 1 / \ 2 3 \ 5 All root-to-leaf paths are: [ "1->2->5", "1 ...
分类:
其他好文 时间:
2017-10-08 15:35:21
阅读次数:
158
Given a binary tree, generate all root to leaf paths of a binary tree. Example: Example Tree The output for the above example is [[1, 2, 4], [1, 2, 5] ...
分类:
其他好文 时间:
2017-10-03 00:52:30
阅读次数:
187
以前的Java版本中读取文件非常繁琐,现在比较简单。使用Java8的Files以及Lambda,几句代码就可以搞定。 public static String getXml() { StringBuffer xml = new StringBuffer(); Path path = Paths.ge ...
分类:
编程语言 时间:
2017-10-02 17:16:56
阅读次数:
148
这是一道中等题 题目: 思路: 定义一个二维数组并初始化为1,由于只能往因此,我们有以下状态方程:假设到达点(i,j)的路径数量表示为P [i] [j],很容易得出结论:P [i] [j] = P [ i-1] [j] + P [i] [j-1],由于有边界条件的限制,我们在遍历时,索引需要从1开始 ...
分类:
其他好文 时间:
2017-09-30 00:38:21
阅读次数:
170
Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: All root-to-leaf paths are: //如果有子节点,字符串随着递归一直累加,直到没 ...
分类:
其他好文 时间:
2017-09-28 14:45:14
阅读次数:
161
Python是跨平台的,可以在不同的操作系统上运行。但是不同系统上路径 的表示方式是不一样的。 例如windows上路径使用“\”分割子目录和父目录,linux上是使用“/”来分割。这就是PurePosixPath、PureWindowsPath出现的原因。 PureWindowsPath:这种路径 ...
分类:
编程语言 时间:
2017-09-24 18:26:25
阅读次数:
331