(转自:http://www.cnblogs.com/as285996985/articles/1535014.html)//遍历option和添加、移除optionfunction changeShipMethod(shipping){var len = $("select[@name=ISHIP...
分类:
Web程序 时间:
2014-06-28 19:23:01
阅读次数:
228
//// main.cpp// circleQueue//// Created by zhou on 14-6-19.// Copyright (c) 2014年 zhou. All rights reserved.//#define Max 50typedef struct ...
分类:
其他好文 时间:
2014-06-28 18:54:47
阅读次数:
171
Ubuntu Linux:1.root账号执行:apt-get install mysql-server2.设置远程连接:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION;CentOS Li...
分类:
数据库 时间:
2014-06-28 18:04:16
阅读次数:
277
题目链接题意 : 用矩阵相乘求斐波那契数的后四位。思路 :基本上纯矩阵快速幂。 1 //3070 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 struct Matrix 9 {10 int v[2][2...
分类:
其他好文 时间:
2014-06-28 17:48:14
阅读次数:
214
1、解决客户端联不上MySQL服务器的问题: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '' WITH GRANT OPTION; FLUSH PRIVILEGES;2、登陆MySQL: mysql -u root -p 12.....
分类:
数据库 时间:
2014-06-28 17:32:04
阅读次数:
245
例子:struct context { uint edi; uint esi; uint ebx; uint ebp; uint eip;}; ...p->context = (struct context*)sp;p->context->eip = (uint)forkret;结构体成...
分类:
编程语言 时间:
2014-06-28 17:26:51
阅读次数:
172
PropertyTypeDescriptionDefault1)ajaxGridOptionsobjectThis option allows to set global ajax settings for the grid when requesting data. Note that with ...
分类:
其他好文 时间:
2014-06-20 17:15:59
阅读次数:
218
static struct mtd_partition smdk_default_nand_part[] = {[0] = { .name = "Boot", .size = 0x00100000, ....
分类:
其他好文 时间:
2014-06-20 16:47:10
阅读次数:
156
母函数简单题 1 #include 2 #include 3 using namespace std; 4 5 const int MAX=130000; 6 int c1[MAX],c2[MAX]; 7 8 struct { 9 int val,num;10 }thing[55];...
分类:
其他好文 时间:
2014-06-20 16:07:13
阅读次数:
164
#include #include #includeusing namespace std;struct Node { double coef; int expn; Node *next;};void CreatPolynomial(Node *&head, int n) ...
分类:
其他好文 时间:
2014-06-20 14:17:26
阅读次数:
285