// <!DOCTYPE?html>
<html>
<head>
<title>this?is?a?page</title>
<style?type="text/css">
????body{padding:0;
?????????margin:0;
????????}
????.left{width:200px;
????...
分类:
Web开发 时间:
2015-08-28 23:28:17
收藏:
0 评论:
0 赞:
0 阅读:
349
前略! ? ????????????当你还在void main的时候 、 当你还在 public class 的时候 、当你还在<h1>或者<div>的时候;你知道有个家伙叫做Python (蟒蛇)么? ? ????????????当你在用C的...
分类:
编程语言 时间:
2015-08-28 23:27:56
收藏:
0 评论:
0 赞:
0 阅读:
307
为什么学习Gradle 1.???????? 配置清晰,简单易懂 2.???????? 比Maven的配置文件更加简洁 3.???????? 强大的Groovy脚本的支持 4.???????? 有上面3个理由就够了 ? ? 学习Gradle的...
分类:
其他 时间:
2015-08-28 23:27:47
收藏:
0 评论:
0 赞:
0 阅读:
597
#include?"stdafx.h"
#include<iostream>
using?namespace?std;
void?count(char?*c)
{
?if(c==NULL)
??return;
?int?zimu=0;
?int?shuzi=0;
?int?kongge=0;
?int?qita=0;
?while(*c)
?{
??i...
分类:
其他 时间:
2015-08-28 23:27:37
收藏:
0 评论:
0 赞:
0 阅读:
335
单机版安装 单机安装十分简单: 1)将neo4j的community版本下载完毕后,进行解压,运行的命令是:tar –zvxf neo4j-community-2.0.1.tar.gz 2)修改conf/neo4j-server.properties配置文件,将org.neo4j.server.we...
分类:
系统服务 时间:
2015-08-28 23:27:27
收藏:
0 评论:
0 赞:
0 阅读:
1271
/** * Tries to claim the user‘s drag motion, and requests disallowing any * ancestors from stealing events in the drag. *? * 试图告诉父view不要拦截子控件的drag */ private void attemptClaimDrag() {...
分类:
其他 时间:
2015-08-28 23:27:16
收藏:
0 评论:
0 赞:
0 阅读:
549
Word Search 和 Word Search Ⅱ
Word Search
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, whe...
分类:
其他 时间:
2015-08-28 23:26:26
收藏:
0 评论:
0 赞:
0 阅读:
397
1.获取指定目录下所有文件,包括子文件夹下文件,使用到递归
2.获取一个文件相对于另一个文件的相对路径
curl主要是curl_setopt中curlopt_*的理解和活用...
分类:
Web开发 时间:
2015-08-28 23:26:06
收藏:
0 评论:
0 赞:
0 阅读:
360
#import
int main(int argc, const char * argv[]) {
@autoreleasepool {
//获取代表当前日期,时间的NSDate
NSDate* date1 = [NSDate date];
NSLog(@"%@", date1);
//获...
分类:
其他 时间:
2015-08-28 23:25:56
收藏:
0 评论:
0 赞:
0 阅读:
431
好久不用linux又全忘了。。
一、下载jdk
由于我用的虚拟机无法连网,,校园网。。坑
所以使用windows下载下来jdk以后拖到桌面
二、移动jdk
mv jdk-filename targetdir
三、解压
tar -zxvf jdk-filename
四、环境变量配置
打开配置文件
vim /etc/profile...
分类:
系统服务 时间:
2015-08-28 23:25:46
收藏:
0 评论:
0 赞:
0 阅读:
486
思路:先对集合排序,时间复杂度nlogn,再把M从最大值开始遍历,A和B分别取小于M的最小值和最大值,测试A+B是否等于M,如果小则A右移,如果大则B左移。总的时间负责度为n*n
int find(int S[], int n){
sort(S, S + n);
for(int i = n - 1; i >=2; --i){
int left = 0, right = i - 1...
分类:
其他 时间:
2015-08-28 23:25:36
收藏:
0 评论:
0 赞:
0 阅读:
399
SDUT 3033 (坑)
#include
#include
#include
#include
#define LL long long
using namespace std;
struct node
{
LL s,p,w;
}q[10];
int main()
{
LL n,v,i,j,k;
while(~scanf("%ll...
分类:
其他 时间:
2015-08-28 23:25:26
收藏:
0 评论:
0 赞:
0 阅读:
416
Control
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2295 Accepted Submission(s): 961
Problem Description
You, the head of...
分类:
其他 时间:
2015-08-28 23:25:17
收藏:
0 评论:
0 赞:
0 阅读:
447
做这道题的时候,想到会不会是dp,然后发现dp值
#pragma comment(linker,"/STACK:102400000,102400000")
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#defi...
分类:
其他 时间:
2015-08-28 23:24:56
收藏:
0 评论:
0 赞:
0 阅读:
483
题目链接:http://codeforces.com/gym/100609/attachments
题目大意:有n张牌,每张牌有红色和蓝色两面,两面分别写了一些数字,同种颜色的任意两个数字若排在前面的数字比排在后面的数字大就叫做一对逆序数。求怎样排序得到的逆序数对最少。
解题思路:其中一种颜色的数字是顺序且这种颜色数字相同时对应的另一种颜色的数字是顺序时得到的逆序数对数最少。难点在于求逆序数对...
分类:
编程语言 时间:
2015-08-28 23:24:46
收藏:
0 评论:
0 赞:
0 阅读:
731
UTF-8
if(preg_match('/^[\x{4e00}-\x{9fa5}]+$/u',$str)){
echo '匹配';
}else{
echo '没有匹配';
}
GB2312,GBK
if(preg_match("/^[".chr(0xa1)."-".chr(0xff)."A-Za-z0-9_]+$/",$str)){
echo '匹配';
}else{
echo...
分类:
Web开发 时间:
2015-08-28 23:24:36
收藏:
0 评论:
0 赞:
0 阅读:
317
title: “Why coding like This —— 递归以及枚举中的递归”
date: 2015-08-28 21:34:16
categories: “why coding like this”
tags: [swift进阶] Topic 1:输入一个数组xs:[Int],对全体元素求和。Discuss
思路一: Hey,伙计,遍历数组,逐个相加,so easy!
co...
分类:
其他 时间:
2015-08-28 23:24:26
收藏:
0 评论:
0 赞:
0 阅读:
453
看模板,寻找的最好理解,最好用的矩阵基本操作的模板
#define MAXN 100
#define zero(x) (fabs(x)
struct mat
{
int n,m;
double data[MAXN][MAXN];
};
///矩阵加减乘
int add(mat& c,const mat& a,const mat& b)
{
int i,...
分类:
其他 时间:
2015-08-28 23:24:16
收藏:
0 评论:
0 赞:
0 阅读:
452
欢迎来到EasyLiu的博客 !
参考:directxtutorial.com DirectX.9.0.3D游戏开发编程基础
In the last lesson you built a simple, flat triangle lit with simple diffuse lighting. This triangle was not 3D, it was flat...
分类:
其他 时间:
2015-08-28 23:24:06
收藏:
0 评论:
0 赞:
0 阅读:
586
1、Dijkstra算法能够解决有向图中单个源点到另一终点的最短路径问题,它的算法过程如下:
1)用矩阵graph[]N[N](N为图中节点个数)表示带权的有向图G。若图中两个节点vi和vj是连通的,则graph[i][j]表示这两个节点之间边的权值;若两节点vi和vj不是连通的,则graph[i][j] = -1.
2)设S为从某点start_vec开始的最短路径path的终点集合,初始状态...
分类:
编程语言 时间:
2015-08-28 23:23:56
收藏:
0 评论:
0 赞:
0 阅读:
223