题目https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/
Say you have an array for which the ith element is the price of a
given stock on day i. Design an algorithm to find the maximum...
分类:
其他好文 时间:
2015-07-24 09:22:28
阅读次数:
125
Write a function to find the longest common prefix string amongst an array of strings.class Solution {public: string longestCommonPrefix(vector& st...
分类:
其他好文 时间:
2015-07-24 06:55:48
阅读次数:
143
Self powers
Problem 48
The series, 11+22+33+...+1010=104050713171^1 + 2^2 + 3^3 + ... + 10^{10} = 10405071317.Find the last ten digits of the series, 11+22+33+...+100010001^1 + 2^2 + 3^3 + ... + 1000...
分类:
编程语言 时间:
2015-07-24 01:30:34
阅读次数:
201
Can you find it?
Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/10000 K (Java/Others)
Total Submission(s): 16411 Accepted Submission(s): 4172
Problem Description
Give you ...
分类:
其他好文 时间:
2015-07-23 23:57:15
阅读次数:
147
You have just finished a compiler design homework question where you had to find the parse tree of an expression. Unfortunately you left your assignme...
分类:
其他好文 时间:
2015-07-23 23:21:50
阅读次数:
278
题目描述:Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:A: ...
分类:
其他好文 时间:
2015-07-23 23:20:54
阅读次数:
203
在三个数组中各选一个数,判断相加是否能得到目标数。一开始想暴力发现impossible~联系到二分,经过学长指点才将前两个数组合并,将前两个数组所有可能的和保存在新数组中,再根据第三个数组,二分查找新数组以判断是否有所需的数#include"cstdio"#include"cstring"#incl...
分类:
其他好文 时间:
2015-07-23 17:13:40
阅读次数:
89
用excel处理数据的时候,无论是使用VBA还是函数,查找和引用都是两大主要的工作,VBA中的find系列的方法(find、findnext、Range.FindPrevious)返回range对象,可以同时实现查找和引用,因此非常有用,下面列举一些常见的find的用法:SubFind1()'在某列...
分类:
编程语言 时间:
2015-07-23 17:12:44
阅读次数:
15138
http://acm.hdu.edu.cn/showproblem.php?pid=2612Find a wayTime Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submissio...
分类:
其他好文 时间:
2015-07-23 15:35:32
阅读次数:
92
Find the systemd docker.service unit file. (找到docker.service所在目录) Mine is located at:?/usr/lib/systemd/system/docker.service 在docker.service中可以看到如下环境配置的文件: EnvironmentFile=-/...
分类:
其他好文 时间:
2015-07-23 14:20:02
阅读次数:
270