码迷,mamicode.com
首页 >  
搜索关键字:struct option    ( 27477个结果
jQuery操作input值总结
1、获取选中的值:获取一组radio被选中项的值: var item = $("input[@name=items]:checked").val();获取select被选中项的文本: var item = $("select[@name=items] option[@selected]").tex....
分类:Web程序   时间:2014-05-01 13:31:03    阅读次数:482
Chap4: question: 19 - 28
19. 二叉树的镜像(递归)即:交换所有节点的左右子树。从下往上 或 从上往下 都可以。#include #include using namespace std;struct BTNode{ int v; // default positive Integer. BTNode *pLeft; B....
分类:其他好文   时间:2014-05-01 12:41:11    阅读次数:416
ios消息
Class1 typedef struct objc_class *Class; 1 struct objc_class { 2 Class isa OBJC_ISA_AVAILABILITY; 3 4 #if !__OBJC2__ 5 Class super_class ...
分类:移动开发   时间:2014-05-01 07:13:10    阅读次数:502
c# 播放器 支持所有格式
---恢复内容开始---直接上代码internal static class LibVlcAPI { internal struct PointerToArrayOfPointerHelper { [MarshalAs(UnmanagedTyp...
分类:其他好文   时间:2014-05-01 04:00:03    阅读次数:368
《linux 内核完全剖析》 笔记 由逻辑地址转换成线性地址代码分析
一开始由这段代码引发的纠结 get_base(current->ldt[1]) 下面是各个相关的代码,摘自不同的header files。。。 current是指向当前task的指针 struct desc_struct ldt[3]; struct desc_struct { unsigned long a,b; } ; #define _get_...
分类:系统相关   时间:2014-04-29 13:42:20    阅读次数:546
自定义元件package时,元件的新建属性在原理图中无显示
在制作元件package封装,选择package type 封装为Heterogeneous,给元件新定义封装,却在原理图中显示不了。 解决方法: 1、调出如图所示User Property对话框(Option----》Part properties),图中方框中的packGRP为笔者定义属性,却没在原理图中显示。 2、选中新建属性-----点击右侧的Display,如下图所示: ...
分类:其他好文   时间:2014-04-29 13:34:21    阅读次数:364
UVA 315 求割点数
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=251 测模版: #include #include #include #include #include #include using namespace std; #define ...
分类:其他好文   时间:2014-04-29 13:31:21    阅读次数:542
bt种子爬虫程序和种子解析(大蟒蛇语言编写)
最近亲眼看到快播被大批警察包围,感觉到快播注定要关闭很多东西,很多宅男宅女们又要寂寞了,于是乎,疯狂的研究DHT网络技术 看到网上也有开源的代码,这不,我拿来进行了二次重写,呵呵,上代码: #encoding: utf-8 import socket from hashlib import sha1 from random import randint from struct import u...
分类:其他好文   时间:2014-04-29 13:13:20    阅读次数:420
poj 2431 Expedition 贪心+最大堆
当油量不够时从走过的油站中选最大加油量的 #include #include #include #include using namespace std; #define MAX_N 10005 struct node{ int dist,fuel; }t[MAX_N]; bool cmp(const node &a,const node &b) { return a.dist<b.dis...
分类:其他好文   时间:2014-04-28 10:44:43    阅读次数:335
Linux 内核 hlist 详解
在Linux内核中,hlist(哈希链表)使用非常广泛。本文将对其数据结构和核心函数进行分析。 和hlist相关的数据结构有两个:hlist_head 和 hlist_node //hash桶的头结点 struct hlist_head { struct hlist_node *first;//指向每一个hash桶的第一个结点的指针 }; //hash桶的普通结点 struct hl...
分类:系统相关   时间:2014-04-27 21:24:06    阅读次数:579
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!