自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(8)
  • 资源 (8)
  • 收藏
  • 关注

转载 深入分析 Linux 内核链表

深入分析 Linux 内核链表  级别: 初级杨沙洲 (pubb@163.net)国防科技大学计算机学院2004 年 8 月 01 日本文详细分析了 2.6.x 内核中链表结构的实现,并通过实例对每个链表操作接口进行了详尽的讲解。一、 链表数据结构

2010-04-14 14:40:00 355

原创 一个最简单的三维数组的访问实现

#include  void main(void){ int i; char a[2][2][3]={{{1,2,3},{4,5,6}},{{7,8,9},{10,11,12}}};  for(i=0;i printf("%d/n",  *(&a[0][0][0]+i));} 在这里,我把 printf("%d/n",  *(&a[0][0][0]+i));中的*(

2010-04-14 14:17:00 623

原创 一个测试 C语言中各种数据类型的简单函数实现

#include #if 1typedef struct MyStruct{ double dda0; char dda1;short dda3;double dda4; int type ;}testS; char *p;char *q[20];char *m[20][20];int (*n)[10];testS k; #define TITLE() printf("

2010-04-14 13:46:00 1982

转载 Meta-Loopless Sorts

  Meta-Loopless Sorts  Background  Sorting holds an important place in computer science. Analyzing and implementing various sorting algorithms forms an important part of the educ

2009-02-22 11:22:00 554

转载 symbian应用程序开发-1

1.1. Developing Series 60 Applications1.1.1.    Getting StartedSeries 60 SDKs 由Symbian公司发布的指定版本的Symbian OS C++ SDKs构建。一个SDK包含工具、应用程序接口、类库和文档等,以方便开发者能够开发新的应用程序。每个Series60的产品都建立在特定发布平台之上,而开发人员经常需要

2009-02-19 20:19:00 1079

转载 互联网中路由器的作用

互联网中路由器的作用       ------------------------------互联网技术点滴  随着互联网的高速发展,路由器作为网络设备越来越受到重视。可以说,没有了解路由器,就等于没有了解互联网。从下例我们也可以了解到路由器在互联网中的重要性:网络在概念上分为三个层次: 同在一个网内,如同在网络1或同在网络2内可以使用CSMA/CD等广播方式来互相通信

2008-10-21 23:36:00 971

原创 递归法求二进制数

/*递归法求二进制数*/#includevoid printb(int x,int n);void main(){    int x;    printf("input number:");    scanf("%d",&x);    printf("number of decimal form: %d/n",x);        printb(x,sizeof(int)*8);   

2008-10-21 23:23:00 542

原创 16进制转化为10 进制

#include #define MAX 1000int htoi(char s[]);void main(){ int c; int i; int flag; int flag1; char t[MAX]; i=0; flag = 0; flag1 = 1; printf("/ninput a HEX number:"); while (((c=getchar())!=/n)

2008-10-21 23:20:00 480

VxWorks开发指南与Tornado实用手册.zip

VxWorks操作系统指南 pdf, 详细讲解了VxWorks操作系统的基本原理,特点等。是中文资料,对初学者比较有用

2020-04-26

基于BCM53115实现ACL功能

详细描述了BCM53115的ACL功能实现,之前做开发的时候,也比较模糊,大概知道怎么做能够使功能正常,这个文档从总体是详细描述了操作细节,并配置了示例。

2013-11-21

omnipeek user guide

专业的数据包分析软件用户手册,可以分析有线和无线数据包,支持的协议类型是非常全面的,专业的啊,不是业余的呢!

2013-11-21

802.11-2012.pdf

802.11-2012 完整版本,对无线开发是十分必要的 IEEE Standard for Information technology— Telecommunications and information exchange between systems Local and metropolitan area networks— Specific requirements Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications Abstract: This revision specifies technical corrections and clarifications to IEEE Std 802.11 for wireless local area networks (WLANS) as well as enhancements to the existing medium access control (MAC) and physical layer (PHY) functions. It also incorporates Amendments 1 to 10 published in 2008 to 2011. Keywords: 2.4 GHz, 3650 MHz, 4.9 GHz, 5 GHz, 5.9 GHz, advanced encryption standard, AES, carrier sense multiple access/collision avoidance, CCMP, channel switching, Counter mode with Cipher-block chaining Message authentication code Protocol, confidentiality, CSMA/CA, DFS, direct link, dynamic frequency selection, E911, emergency alert system, emergency services, forwarding, generic advertisement service, high throughput, IEEE 802.11, interface, international roaming, interworking, interworking with external networks, LAN, local area network, MAC, measurement, medium access control, media-independent handover, medium access controller, mesh, MIH, MIMO, MIMO-OFDM, multi-hop, multiple input multiple output, network advertisement, network discovery, network management, network selection, off-channel direct link, path-selection, PHY, physical layer, power saving, QoS, quality of service, PHY, physical layer, QoS mapping, radio, radio frequency, RF, radio resource, radio management, SSP, SSPN, subscriber service provider, temporal key integrity protocol, TKIP, TPC, transmit power control, tunneled direct link setup, wireless access in vehicular environments, wireless LAN, wireless local area network, WLAN, wireless network management, zero-knowledge proof

2013-03-14

Python库参考手册.pdf

Python库参考手册.pdf,非常经典,值得你拥有

2013-03-13

Python自己整理的经典教程.pdf

Python自己整理的经典教程。官方教程,很经典的。

2013-03-13

802_11n-WP100-R.pdf

This white paper explains IEEE 802.11n, the newest draft specification for Wi-Fi®. It is designed to provide an overview of the technology, describe new techniques used to achieve greater speed and range, and identify applications, products, and environments that will benefit from the technology.

2012-10-14

GCC中文手册

GCC中文手册,帮助文档

2007-07-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除