Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another express...
分类:
其他好文 时间:
2014-06-28 22:31:11
阅读次数:
323
裸题,上模版,,嘿嘿
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll __int64
ll gcd(ll a, ll b) {
return b == 0 ? a : gcd(b, a%b);
}
//求一组解(x,y...
分类:
其他好文 时间:
2014-06-25 19:51:56
阅读次数:
138
一、stanford trex 简介
http://nlp.stanford.edu/software/tregex.shtml
A java program for identifying patterns in trees
Like regular expressions for strings, b...
分类:
其他好文 时间:
2014-06-24 18:51:30
阅读次数:
344
题目
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the ent...
分类:
其他好文 时间:
2014-06-24 18:43:56
阅读次数:
224
vs2013 的弹出消息框 就这么几个字"VS2012 无法启动 IIS Express Web"怎么解决 。。。。我第一思维去网上搜索一下。。。没搜索到有用的结果。。。有人说是 防火墙,我防火墙是关着的。。。好吧 有人 手动启动 iis express我试了一下 成功了那会是什么 问题呢。。。抱着...
分类:
Web程序 时间:
2014-06-22 23:55:09
阅读次数:
421
//依赖组件[模块]导入
var express = require('express');
var path = require('path');
var favicon = require('static-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var log = require('./...
分类:
微信 时间:
2014-06-22 21:39:42
阅读次数:
401
??
启动Tomcat之后出现全是英文错误:
ORACLE DATABASE 10g EXPRESS EDITION LICENSE AGREEMENT
To use this license, you must agree to all of the following terms (by either clicking the accept button or installing an...
分类:
数据库 时间:
2014-06-22 15:48:26
阅读次数:
608
LoopBack 是建立在 Express 基础上的开源 Node.js 框架,专门为 Mobile,Web 和其他设备做了优化。LoopBack 能够连接到多个数据源,使用 Node.js 编写业务逻辑,集成现有的服务和数据。
分类:
Web程序 时间:
2014-06-19 07:20:16
阅读次数:
270
Express 4.x 默认将启动模块分离到了./bin/www中,直接使用 supervisor 无法正常监控应用,使得开发过程中的调试非常不方便。直接在 app.js 添加 app 模块即可。var debug = require('debug')('my-application'); // d...
分类:
其他好文 时间:
2014-06-18 10:23:33
阅读次数:
243
测试环境:硬件: Intel I5 4核 +8G内存。软件: Windows 7 + vs2013 SP2 + EF6.1 + MVC5.1数据库: vs2013自带的sql express 2012.测试过程:1. 新建一默认模板的MVC项目,在Models中添加如下代码并建立对应的库表: ...
分类:
Web程序 时间:
2014-06-18 09:17:12
阅读次数:
407