链接:http://poj.org/problem?id=2421 或 http://acm.hdu.edu.cn/showproblem.php?pid=1102
Problem Description
There are N villages, which are numbered from 1 to N, and you should build some roads ...
分类:
其他好文 时间:
2014-05-10 09:34:09
阅读次数:
389
Given a triangle, find the minimum path sum from
top to bottom. Each step you may move to adjacent numbers on the row below.For
example, given the fol...
分类:
其他好文 时间:
2014-05-08 21:08:25
阅读次数:
407
from://http://www.eoeandroid.com/home.php?mod=space&uid=765778&do=blog&id=47674Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery...
分类:
移动开发 时间:
2014-05-08 21:02:03
阅读次数:
735
HAVING 子句在 SQL 中增加 HAVING 子句原因是,WHERE
关键字无法与合计函数一起使用。SQL HAVING 语法SELECT column_name,
aggregate_function(column_name)FROM table_nameWHERE column_name ...
分类:
其他好文 时间:
2014-05-08 20:48:01
阅读次数:
311
看代码declare @iid intselect @iid=111select top 1
@iid=isnull(IID,0) from YYGL_PCDMX where IID=0print
@iid上面的情况,如果iid=0没有记录,则@iid会取111,为了避免这个问题1、在查询前,初始化...
分类:
数据库 时间:
2014-05-08 20:13:13
阅读次数:
438
练习题(这里贴的是自己写的代码,
网上给的题目代码我会附加在最下面)1.编写shell脚本,计算1-100的和; 1 #!/bin/bash 2 #caculate the sum of
numbers from 1 to 100 3 4 sum=0 5 for i in `seq 1 100`;....
分类:
其他好文 时间:
2014-05-07 19:34:54
阅读次数:
305
Select Top在不同数据库中的使用用法:1. Oracle数据库 SELECT * FROM
TABLE1 WHERE ROWNUM<=N2. Infomix数据库 SELECT FIRST N * FROM TABLE13. DB2数据库
SELECT * ROW_NUMBER() OVER...
分类:
数据库 时间:
2014-05-07 19:12:48
阅读次数:
366
SQL Server获取指定行(如第二行)的数据--SQL
Server获取指定行(如第二行)的数据----法一(对象法)--select * from(select * , number = row_number()
over(orderby Grade desc) from Students)m...
分类:
数据库 时间:
2014-05-07 18:41:48
阅读次数:
517
MySQL中表之间的链接语句:关键词:INNER JOIN格式:SELECT 列名表 FROM
表名1 [INNER] JOIN 表名2 ON或WHERE条件表达式
分类:
数据库 时间:
2014-05-07 09:08:18
阅读次数:
342
今天打算做两道半平面交,一题卡太久了,心都碎了。。。#pragma
warning(disable:4996)#include #include #include #include #include #include
#include using namespace std;#define maxn...
分类:
其他好文 时间:
2014-05-06 12:27:57
阅读次数:
389