项目中用到的SQLServer分页查询存储过程。
【存储过程】
create PROCEDURE prcPageResult
-- 获得某一页的数据 --
@currPage int = 1, --当前页页码 (即Top currPage)
@showColumn varchar(2000) = '*', --需要得...
分类:
数据库 时间:
2014-06-20 12:51:04
阅读次数:
246
一直想要写的 二叉树 中序 先序 后序遍历算法
递归的太简单了,就不写了。关键是非递归版本。
先序:
我自己的版本:
void RootPreTraverse(Node* p)
{
Stack S;
while(S not empty)
{
p=S.top();
S.pop();
Show(p);
if(p->right!=null)
S...
分类:
其他好文 时间:
2014-06-20 10:55:49
阅读次数:
279
Dim lb As New Label lb.Text = "hello" lb.Top = 200
lb.Left = 100 Me.Controls.Add(lb)
原题地址:https://oj.leetcode.com/problems/triangle/题意:Given
a triangle, find the minimum path sum from top to bottom. Each step you may move
to adjacent n...
分类:
编程语言 时间:
2014-06-06 17:31:34
阅读次数:
397
http://www.qingdou.me/2142.htmlCSS书写顺序1.位置属性(position,
top, right, z-index, display, float等)2.大小(width, height, padding,
margin)3.文字系列(font, line-heig...
分类:
Web程序 时间:
2014-06-06 14:09:25
阅读次数:
393
It happened in the iron and instantaneous
stuffy car, will have top, hydraulic automatic row material, greatly reduces the
original spring cone crushe...
分类:
其他好文 时间:
2014-06-06 10:45:06
阅读次数:
310
在CSS中,背景图片的定位方法有3种: 1)关键字:background-position: top
left; 2)像素:background-position: 0px 0px; 3)百分比:background-position: 0%
0%;上面这三句语句,都将图片定位在背景的左上角,...
分类:
Web程序 时间:
2014-06-05 15:56:30
阅读次数:
279
键盘移动 (Move)一切都从键盘的移动k-> 上 upj-> 下
downh-> 左 leftl-> 右 rightz-> 重画屏幕,当前光标变成屏幕的第一行 (redraw current line at
top of window)CTRL-f-> 跳到下一页 (page down)CTRL-...
分类:
其他好文 时间:
2014-06-05 15:48:07
阅读次数:
354
代码插入测试html,body{height:100%;width:100%;}.top{position:fixed;}图片插入测试(应为原始大小)更新于2014/6/3
分类:
其他好文 时间:
2014-06-04 14:52:35
阅读次数:
203
Paper:
ImageNet Classification with Deep Convolutional Neual Network
Achievements:
The model addressed by Alex etl.
achieved top-1 and top-5 test error rate of
37.5% and
17.0% of classifyin...
分类:
Web程序 时间:
2014-06-02 15:08:24
阅读次数:
369