码迷,mamicode.com
首页 >  
搜索关键字:base image    ( 63129个结果
Starship Troopers
Problem DescriptionYou, the leader of Starship Troopers, are sent to destroy a base of the bugs. The base is built underground. It is actually a huge ...
分类:其他好文   时间:2014-05-14 04:02:54    阅读次数:336
【LeetCode】Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?思路:先将矩阵转置,然后将第一列与最后...
分类:其他好文   时间:2014-05-14 03:09:35    阅读次数:225
【C++】学习汇总
【1】Virtual是C++ OO机制中很重要的一个关键字。只要是学过C++的人都知道在类Base中加了Virtual关键字的函数就是虚拟函数(例如下面例子中的函数print),于是在Base的派生类Derived中就可以通过重写虚拟函数来实现对基类虚拟函数的覆盖。当基类Base的指针point指向...
分类:编程语言   时间:2014-05-14 02:11:02    阅读次数:352
css study
html{filter:expression(document.execCommand("BackgroundImageCache",false,true))_background-image:url(about:blank);_background-attachment:fixed}body,di...
分类:Web程序   时间:2014-05-14 02:10:02    阅读次数:281
C++常用小工具……
1. 批量改变文件内容://批量改变输出文件内容#include #include #include using namespace std;int main(){ ifstream input("D:pos_img.txt"); ofstream output("D:pos_image...
分类:编程语言   时间:2014-05-13 22:29:37    阅读次数:458
ThinkPHP学习(五)图上验证码
今天用到图上验证码的功能,在网上找到ThinkPHP的以下代码: Public function verify(){ import('think.Image'); Image::buildImageVerify(); }添加到Controller中,通过地址“http://localhost/index.php/passport/index/verify”来访问,却提示以下错误:Cla...
分类:Web程序   时间:2014-05-13 14:43:19    阅读次数:449
Android图片异步加载之Android-Universal-Image-Loader类库的使用
Android开发中我们会经常遇到图片过多或操作不当造成Out of Memory异常,有时虽然是解决了这个问题但却会影响程序的运行效率,例如:当用户在快速滑动滚动条的过程中,我们程序在仍在艰难的加载服务器端的图片,这样给用户造成了极不好的体验。其实网络上关于图片的异步加载和缓存的讲解很多,但是其实,写一个这方面的程序还是比较麻烦的,要考虑多线程,缓存,内存溢出等很多方面,针对这一广大开发者都...
分类:移动开发   时间:2014-05-13 13:36:52    阅读次数:359
ShotGraph例程
下面是HTML文件用于上传3个文件 ACTION="Upload.asp"> Image Text Source Code Archive 上传程序(Upload.asp): Set Upload = Server.CreateObject("Persits.Upload.1") ...
分类:其他好文   时间:2014-05-13 00:21:11    阅读次数:270
silverlight五种画刷
阿斯达斯的斯蒂芬
分类:Web程序   时间:2014-05-12 21:31:42    阅读次数:306
【剑指offer】数值的整数次方
剑指offer上的第十一题,九度OJ上测试通过。 题目描述: 给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。 输入: 输入可能包含多个测试样例。 对于每个输入文件,第一行输入一个整数T,表示测试案例的数目,接下来的T行每行输入一个浮点数base和一个整数exponent,两个数中间用一个空格隔开。 输出: 对应每个测试案例, 输出一个浮点数代表答案,保留两位小数即可。...
分类:其他好文   时间:2014-05-11 21:23:13    阅读次数:341
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!