码迷,mamicode.com
首页 >  
搜索关键字:path sum ii    ( 55953个结果
[ACM] 线段树模板
#include#includeusing namespace std;#define maxn 200005class Node{public: int l,r; int add;//附加值 int sum;}node[maxn];int getRight(int n){//获得...
分类:其他好文   时间:2014-07-22 23:14:14    阅读次数:431
文本文件处理练习DoTXT
public class DoTXT { // 定义成员变量:路径,文件对象,临时变量 private String path; // 文件路径 private File f; private FileReader fr; // 所需文件流对象 private File...
分类:其他好文   时间:2014-07-22 23:13:15    阅读次数:300
openfire build
1. build path:a) source folder:包括openfire和各插件的代码。b) libraries:build/lib下jar包和插件下jar包,jdk/lib/tools.jar(编译jsp需要)。2. ant build:build/build.xmla) openfir...
分类:其他好文   时间:2014-07-22 23:12:36    阅读次数:489
smb
[share]path=/home/an/shareavailable=yesbrowse able=yespublic=yeswritable=yessecurity = userusername map = /etc/samba/smbusers[share]comment = Shared F...
分类:其他好文   时间:2014-07-22 23:11:34    阅读次数:332
机器人II
1 /*机器人II 2 时间限制:1000 ms | 内存限制:65535 KB 3 难度:1 4 描述 5 自从xiao_wu发明了只能向左转与向右转的机器人以后,热血沸腾的他又给机器人加了一个操作。假设机器人在二维坐标系的原点, 6 一开始面向Y轴正方向(北N),现在给你一个仅由’L’,’...
分类:其他好文   时间:2014-07-22 23:10:33    阅读次数:296
Environment.CurrentDirectory 的一个坑
事情是这样的,今天写测试代码的时候发现,进程 A 调用进程 B,A 与 B不在同一路径下,B 中使用Environment.CurrentDirectory获取当前路径,本以为获取的路径应为 B 所在目录,结果证明,获取路径为 A 路径;要获取 B 所在路径,需使用:Path.GetDirector...
分类:其他好文   时间:2014-07-22 23:09:33    阅读次数:250
WIN7下使用VC2010调试uCOS-II 2.91
WIN7下使用VC2010调试uCOS-II 2.91http://www.amobbs.com/thread-5462878-1-1.htmlucos系统学习汇总http://www.cnblogs.com/gmh915/category/212499.html
分类:Windows程序   时间:2014-07-22 23:08:54    阅读次数:562
openfire开发环境(3.9.1)
1、解压源码2、把build/eclipse中的文件cp到源码跟目录,并修改文件名,前面增加"."号,变成eclipse工程。3、导入eclipse, 把build/lib/, build/lib/dist, build/lib/merge,build/lib/src 下的包放到build path...
分类:其他好文   时间:2014-07-22 23:08:35    阅读次数:309
[leetcode]Binary Tree Maximum Path Sum
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(...
分类:其他好文   时间:2014-07-22 23:07:34    阅读次数:312
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-07-22 23:07:13    阅读次数:379
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!