码迷,mamicode.com
首页 >  
搜索关键字:javascript javascript异步 自动提示    ( 62621个结果
[栈和队列]括号匹配
1 #include 2 #include 3 #include 4 #define INIT_STACK_SIZE 100 5 typedef struct 6 { 7 char * chOperator; 8 int dwtop; 9 }OPND;10 11 void I...
分类:其他好文   时间:2014-05-01 20:32:11    阅读次数:366
POJ 2342 (树形DP)
Anniversary partyTime Limit:1000MSMemory Limit:65536KTotal Submissions:3863Accepted:2172DescriptionThere is going to be ...
分类:其他好文   时间:2014-05-01 20:30:03    阅读次数:311
IOS中Block的循环引用
@interface DemoObj()@property (nonatomic, strong) NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self = [super init]; ...
分类:移动开发   时间:2014-05-01 20:28:37    阅读次数:917
求行列式的值(递归)
/*#include #include #define N 100#define LIM -100000000float det(float a[N][N],int n){ if(n==1) return a[0][0]; if(n==2) return a[...
分类:其他好文   时间:2014-05-01 20:26:45    阅读次数:322
【锋利的JQuery-学习笔记】添加提示图片
效果图:hot图片:(注意:这个图标本身就有抖动效果的,并不是由于标签而具有抖动效果)周期性抖动,起到提示的作用html: 推荐品牌 ...
分类:Web程序   时间:2014-05-01 20:25:24    阅读次数:389
利用Aspose.Cells完成easyUI中DataGrid数据的Excel导出功能
我准备在项目中实现该功能之前,google发现大部分代码都是利用一般处理程序 HttpHandler实现的服务器端数据的Excel导出,但是这样存在的问题是ashx读取的数据一般都是数据库中视图的数据,难免会含有方便操作的 主键ID这列的记录。现在项目需要在easyUI的DataGrid中显示的数据...
分类:Web程序   时间:2014-05-01 20:20:43    阅读次数:912
测试向内存写数据
1 //function1向指定内存写数据,已知a的地址是18FEF0 2 3 int function1() 4 { 5 int a=0; 6 int *p=&a; 7 int *q=(int*)0x18FEF0; //指定q的地址为0x18FEF0 8 9 ...
分类:其他好文   时间:2014-05-01 20:20:06    阅读次数:286
Remove Duplicates from Sorted Array
没有想通为什么这个简单的问题竟然不是那么简单,太小看它了,以下是两个别人的很不错的solution:Solution1: 1 public class Solution { 2 public int removeDuplicates(int[] A) { 3 // Start...
分类:其他好文   时间:2014-05-01 20:19:26    阅读次数:384
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-05-01 20:18:54    阅读次数:425
【锋利的JQuery-学习笔记】切换网页皮肤-且保存于Cookie
切换网页皮肤:html片段: 蓝色 紫色 红色 天蓝色 ...
分类:Web程序   时间:2014-05-01 20:10:58    阅读次数:490
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!