[leetcode]Remove Duplicates from Sorted List II...
分类:
其他好文 时间:
2014-09-15 11:22:01
阅读次数:
192
Part I:提问===========================Part II:Ch02 从零开始实例学习2===========================要点:
分类:
其他好文 时间:
2014-09-15 11:13:08
阅读次数:
179
原题地址:https://oj.leetcode.com/problems/reverse-linked-list-ii/题意:Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Gi...
分类:
编程语言 时间:
2014-09-14 23:38:47
阅读次数:
239
// 算法:DFS// 递归函数参数使用引用//Time Limit Exceeded 1 class Solution { 2 public: 3 vector > findLadders( string start, string end, unordered_set &dict) { ...
分类:
其他好文 时间:
2014-09-14 11:18:47
阅读次数:
154
http://acm.hdu.edu.cn/showproblem.php?pid=5001
思路:dp计算出途径每个点的总概率,1-x即为所求解。
dp题,先介绍下dp[i][j]为第j步走在第i个点的概率,那么dp[i][j]=dp[x1][j-1]+dp[x2][j-1]+...,x1,x2为i 的相邻节点。上一步在相邻节点这一步才能走到该点嘛。
每个点概率要一个一个的算,当算到第ii...
分类:
其他好文 时间:
2014-09-13 21:28:55
阅读次数:
193
源:http://www.cnblogs.com/bingoo/p/3450850.html1.方法一:.sof和.elf全部保存在FPGA内,程序加载和运行也是在FPGA内部。把FPGA的配置文件.sof通过JTAG方式下载(其实是在线运行)进入FPGA本身,此时在NIOSII的界面中,点击“RU...
分类:
移动开发 时间:
2014-09-13 11:58:35
阅读次数:
312
传送门Organize Your Train part IITime Limit:1000MSMemory Limit:65536KDescriptionRJ Freight, a Japanese railroad company for freight operations has recent...
分类:
其他好文 时间:
2014-09-12 23:18:04
阅读次数:
331
递归 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode...
分类:
其他好文 时间:
2014-09-12 11:36:23
阅读次数:
183
这个配比问题,呵呵,线性代数知识,枚举吧,这个数量小。/*ID: qq104801LANG: C++TASK: ratios*/#include #include #include #include #include using namespace std;int goal[3];int ii[3]...
分类:
移动开发 时间:
2014-09-12 11:25:33
阅读次数:
239
leetcode 经典题 DP Palindrome Partitioning II...
分类:
其他好文 时间:
2014-09-11 23:56:32
阅读次数:
332