搜索结果
找到约 236 项符合
ARRAY 的查询结果
按分类筛选
- 全部分类
- 学术论文 (39)
- 其他 (17)
- matlab例程 (16)
- 数学计算 (13)
- Java编程 (10)
- 数据结构 (9)
- 其他书籍 (9)
- 单片机编程 (7)
- VC书籍 (7)
- 技术资料 (7)
- 书籍 (6)
- 教程资料 (5)
- JavaScript (5)
- 系统设计方案 (5)
- 可编程逻辑 (4)
- Linux/Unix编程 (4)
- 软件设计/软件工程 (4)
- 编译器/解释器 (4)
- 模拟电子 (3)
- DSP编程 (3)
- GPS编程 (3)
- 汇编语言 (3)
- Delphi控件源码 (3)
- VHDL/FPGA/Verilog (3)
- 中间件编程 (2)
- 书籍源码 (2)
- 数值算法/人工智能 (2)
- 通讯/手机编程 (2)
- 文件格式 (2)
- 单片机开发 (2)
- 嵌入式/单片机编程 (2)
- Java书籍 (2)
- 多国语言处理 (2)
- 编辑器/阅读器 (2)
- PCB相关 (1)
- 电源技术 (1)
- 嵌入式综合 (1)
- 无线通信 (1)
- C/C++语言编程 (1)
- 开发工具 (1)
- 游戏 (1)
- Internet/网络编程 (1)
- 行业发展研究 (1)
- 其他行业 (1)
- VxWorks (1)
- 软件工程 (1)
- 文章/文档 (1)
- Windows CE (1)
- SQL Server (1)
- 压缩解压 (1)
- 微处理器开发 (1)
- MySQL数据库 (1)
- BREW编程 (1)
- 通讯编程文档 (1)
- 人工智能/神经网络 (1)
- Symbian (1)
- 加密解密 (1)
- Matlab (1)
- 论文 (1)
- 源码 (1)
- VIP专区 (1)
Windows CE This book is an in-depth exploration into eVB s inherent features, and how to use them to solve like
This book is an in-depth exploration into eVB s inherent features, and how to use them to solve likely mobile application programming tasks. After reading the book the reader will be able to write applications tackling a wide array of business problems for Windows CE-powered devices, both customized ...
Linux/Unix编程 I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driv
I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driver to use this library. I choose array for ready queue,and strcut for Thread Control Block.
数学计算 Using Gaussian elimination to solve linear equations. // In this version, we allow matrix of any si
Using Gaussian elimination to solve linear equations.
// In this version, we allow matrix of any size. This is done by treating
// the name of a 2-dimensional array as pointer to the beginning of the
// array. This makes use of the fact that arrays in C are stored in
// row-major order.
数据结构 this package contains two .c files.One file implements the merge of two int arrays.The other one imp
this package contains two .c files.One file implements the merge of two int arrays.The other one implements the merge of two linkage array.
压缩解压 The LZW compression class i mplemented as a fixed length code which you can specify, the huffman alg
The LZW compression class i mplemented as a fixed length code which you can specify, the huffman algorithm implementation encodes a byte into a variable length bit array. Both of them can work with streams
数值算法/人工智能 kmeans算法实现 a simple k-means clustering routine. returns the cluster labels of the data points in a
kmeans算法实现
a simple k-means clustering routine.
returns the cluster labels of the data points in an array.
其他 I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,s
I made a lot of changed on this object,such as *
// 1.Encapsulates all code in one userobjet,since PB does not *
// support "Address of Function" , so we can not set new *
// WndProc, just makes the object more easy to use. *
// 2.Uses structure array instead of Datastore *
// 3. ...
Linux/Unix编程 linux下用C语言写的聊天程序!/*BUG and NOTE: Not join protect to Shared Memory Segments,example Semaphore Array
linux下用C语言写的聊天程序!/*BUG and NOTE:
Not join protect to Shared Memory Segments,example Semaphore Arrays.
Not check the parameters validity.
When transmit may be error.
If the client program no right exit,others cannot know,the service program shouldbe check the client program whether exist t ...
其他 AS2Debug是为了弥补flash自带的trace的不足而制作的
AS2Debug是为了弥补flash自带的trace的不足而制作的,增加了一下几个主要功能
1.对object和Array做了解析,能输出包含的具体数据和类型
2.对movieclip做了处理,使用digMc方法,可以方便的输出包含的所有子影片的详细信息
3.增加了信息分类和染色(分为trace,info,error,waring四种) ...
中间件编程 动态规划的方程大家都知道
动态规划的方程大家都知道,就是
f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j]
但是很多人会怀疑这道题的后效性而放弃动规做法。
本来我还想做Dijkstra,后来变了没二十行pascal就告诉我数组越界了……(dist:array[1..1000*1001
div 2]...)
无奈之余看了xj_kidb1的题解,刚开始还觉得有问题,后来豁然开 ...