[LeetCode] 015. 3Sum (Medium) (C++/Java/Python)...
分类:
编程语言 时间:
2015-03-03 20:44:52
阅读次数:
195
题目大意:给定一棵内向森林,多次给定两个点a和b,求点对(x,y)满足:
1.从a出发走x步和从b出发走y步会到达同一个点
2.在1的基础上如果有多解,那么要求max(x,y)最小
3.在1和2的基础上如果有多解,那么要求min(x,y)最小
4.如果在1、2、3的基础上仍有多解,那么要求x>=y
因此那个x>=y是用来省掉SPJ的,不是题目要求- -
容易发现:
如果a和b不在同一...
分类:
其他好文 时间:
2015-03-03 20:47:42
阅读次数:
300
[LeetCode] 016. 3Sum Closest (Medium) (C++/Java/Python)...
分类:
编程语言 时间:
2015-03-03 20:47:04
阅读次数:
224
#include
int fun(int m);
int main()
{
int n;
int m;
scanf("%d",&n);
while(n--)
{
scanf("%d",&m);
m=m+1;
printf("%d",fun(m));
printf("\n"...
分类:
其他好文 时间:
2015-03-03 20:47:00
阅读次数:
273
help---enter license
输入注册码后点击按钮就可以了
----- BEGIN LICENSE -----
Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
942194A6 02396E98 E62C9979 4BB...
分类:
其他好文 时间:
2015-03-03 20:44:27
阅读次数:
157
Memcache解决单机实现分布式,是大数据时代的要求,解决了高并发访问数据库死锁,实现了多客户端共享缓存。...
分类:
Web程序 时间:
2015-03-03 20:46:39
阅读次数:
246
树形结构是界面设计程中常见的部件,在代码实现时有很多方法,但由于设计到节点的父子关系和dom节点操作,实现起来比较复杂。dojo中提供了带复选框的树形部件CheckBoxTree,使用时只需创建对应的实例即可轻松实现此功能。
部件对应的html文件代码如下:
调用树形部件的js文件中需添加引用:
do...
分类:
其他好文 时间:
2015-03-03 20:44:55
阅读次数:
3461
#include
#include
int main()
{
int n;
int i,j;
char a[102];
scanf("%d",&n);
getchar();
while(n--)
{
gets(a);
j=strlen(a);
...
分类:
其他好文 时间:
2015-03-03 20:45:34
阅读次数:
335
问题来源:http://stackoverflow.com/questions/25391423/ordered-cartesian-product-of-arrays
2个序列时的情形已解决,本文将其扩展到一般情形。
{CSDN:CODE:611346}
测试代码
#include
#include
#include
#include
int main() {
usi...
分类:
其他好文 时间:
2015-03-03 20:46:02
阅读次数:
223
(1)使用WebView则需要在布局文件中使用相应的布局控件
布局文件如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_p...
分类:
Web程序 时间:
2015-03-03 20:43:23
阅读次数:
214
首先到ehcache官网下载:ehcache官网下载完后解压。打开Myeclipse 创建web项目,然后在项目classpath根目录下创建ehchache.xml<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/e...
分类:
系统相关 时间:
2015-03-03 20:44:34
阅读次数:
211
首先说一下dport和sport的概念:
dport--------目的端口
sport--------来源端口
需要注意的是它和我们的数据包的流动行为方式有关奥,也就是看INPUT还是OUTPUT。
比如iptables -A INPUT ...
分类:
其他好文 时间:
2015-03-03 20:43:02
阅读次数:
356
#include "stdafx.h"
#include
#include
#include
#include
#include
using boost::asio::ip::tcp;
#define max_len 1024
class clientSession
:public boost::enable_shared_from_this
{
public:
clientS...
分类:
其他好文 时间:
2015-03-03 20:43:52
阅读次数:
189
Android系统介绍
ß2003年10月,AndyRubin创立Android科技公司
ß2005年8月,被Google收购
ß2007年11月,Google牵头,成立开放手机联盟,共同研发和改进Android系统
ß2007年11月,Android的1.0Beta版问世
ß2010年末成为全球第一大智能手机操作系统
Application Framework
...
分类:
移动开发 时间:
2015-03-03 20:42:34
阅读次数:
160
A题:找出字符串中是否出现了26个英文字母,不区分大小写
#include
#include
#include
using namespace std ;
char str[200] ;
int a[30] , b[30] ;
int main()
{
int n , i ;
scanf("%d", &n) ;
scanf("%s", str) ...
分类:
其他好文 时间:
2015-03-03 20:44:52
阅读次数:
184
由于时间原因,再加之自己懒惰!好久没写博客了,今天写一篇关于datagridview中如何实现时间控件的文章,算是继续自己的记录的习惯!
首先,我们知道datagridview中并不提供控件,因此,我们无法直接使用!对此我们可以进行如下操作,从而实现在datagridview中插入时间控件。
一、声明控件
我们首先要做的便是声明一个时间控件,这个不必详细多说了,有两种方式:
1...