码迷,mamicode.com
首页 >  
搜索关键字:struct option    ( 27477个结果
jQuery对select操作
(转自: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
Linux系统安装Mysql
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
POJ 3070 Fibonacci(矩阵快速幂)
题目链接题意 : 用矩阵相乘求斐波那契数的后四位。思路 :基本上纯矩阵快速幂。 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
MySQL相关操作知识
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
c语言指针
例子: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
jqGrid配置属性说明
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
fl2440 Nand MTD 分区表
static struct mtd_partition smdk_default_nand_part[] = {[0] = { .name = "Boot", .size = 0x00100000, ....
分类:其他好文   时间:2014-06-20 16:47:10    阅读次数:156
HDU 1171
母函数简单题 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!