码迷,mamicode.com
首页 >  
搜索关键字:show    ( 18849个结果
ASP.NET 实现伪静态网页方法
方法一:利用Httphandler实现URL重写(伪URL及伪静态)我们有时候会见到这样的地址:“http://www.huoho.com/show-12-34.html”,你或许认为在站点服务器根目录“/”下存在名为“show-12-34.html”的文件,其实实际它可能是不存在的,而可能你看到的...
分类:Web程序   时间:2014-09-15 09:59:08    阅读次数:214
cocos2dx[3.2]实战篇——《三消类游戏》学习心得
【唠叨】源码教程请移步:http://cn.cocos2d-x.org/tutorial/show?id=815注:本节仅仅记录博主自身学习《三消类游戏》的心得体会。【游戏截图】【学习心得】1、屏幕适配策略手机和平板电脑的屏幕比例主要为16:9、16:10、4:3、3:2。这就说明使用16:9的比例是比较好的选择。那么..
分类:其他好文   时间:2014-09-15 03:21:18    阅读次数:265
dos系统下mysql常用命令
show table status;//查看所有表状态,通过这个命令可以得知表的创建时间和最后更新时间,以及该表是基表还是视图以及是什么表引擎等信息。show table status from dbname name=tbname;//具体查看某张表的状态。也可以用匹配的方式:show table...
分类:数据库   时间:2014-09-14 19:12:47    阅读次数:229
Autoencoders and Sparsity(二)
In this problem set, you will implement the sparse autoencoder algorithm, and show how it discovers that edges are a good representation for natural i...
分类:其他好文   时间:2014-09-14 16:33:07    阅读次数:185
二叉树 - 红黑树
RBTree.h #include template class RBTree { public: RBTree(); bool insert(const T&); bool del(const T&); void show() { Mid_Order(root); } private: enum { RED, BLACK }; typedef struct ...
分类:其他好文   时间:2014-09-13 21:34:08    阅读次数:266
二叉树 - 最大堆
maxheap.h #include template class MaxHeap { public: MaxHeap(int num); MaxHeap(T Arr[], int arrsize, int totalsize); bool insert(const T&); bool del(T&); void show() const; void showonlevel()...
分类:其他好文   时间:2014-09-13 21:32:55    阅读次数:300
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!