码迷,mamicode.com
首页 >  
搜索关键字:from www.texturepack    ( 57817个结果
HDU 1102 && POJ 2421 Constructing Roads (经典MST~Prim)
链接: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
LeetCode: Triangle 题解
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
【Android】开源项目汇总-备用
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 子句
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
sqlserver中top 1 赋值的问题
看代码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
shell脚本练习题(更新中...)
练习题(这里贴的是自己写的代码, 网上给的题目代码我会附加在最下面)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
各个数据库中top 的表示方法
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获取指定行(如第二行)的数据--SQL Server获取指定行(如第二行)的数据----法一(对象法)--select * from(select * , number = row_number() over(orderby Grade desc) from Students)m...
分类:数据库   时间:2014-05-07 18:41:48    阅读次数:517
MySQL
MySQL中表之间的链接语句:关键词:INNER JOIN格式:SELECT 列名表 FROM 表名1 [INNER] JOIN 表名2 ON或WHERE条件表达式
分类:数据库   时间:2014-05-07 09:08:18    阅读次数:342
POJ3525 Most Distant Point from the Sea(半平面交)
今天打算做两道半平面交,一题卡太久了,心都碎了。。。#pragma warning(disable:4996)#include #include #include #include #include #include #include using namespace std;#define maxn...
分类:其他好文   时间:2014-05-06 12:27:57    阅读次数:389
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!