搜索结果
找到约 254 项符合
long-Term 的查询结果
微处理器开发 C51的两个程序,一个是将LONG型十六进制数据转换成LONG型的十进制数,另一个则是逆运算
C51的两个程序,一个是将LONG型十六进制数据转换成LONG型的十进制数,另一个则是逆运算
压缩解压 a small program by Yuval Fisher that has gone a long way to revealing some of the secrets of fracal
a small program by Yuval Fisher that has gone a long way to revealing some of the secrets of fracal image compression.
其他书籍 Techniques for storing and processing data are at the heart of all programs. The term data structure
Techniques for storing and processing data are at the heart of all programs. The term data structure is used to describe the way data is stored, and the term algorithm is used to describe the way data is processed.
其他 武林DLL注入源码 VB调用 Private Declare Function CallHotKey Lib "wulin.dll" (ByVal hWnd As Long, ByVal hotke
武林DLL注入源码 VB调用
Private Declare Function CallHotKey Lib "wulin.dll" (ByVal hWnd As Long, ByVal hotkey As Long) As Boolean
Private Declare Function CallBase Lib "wulin.dll" (ByVal hWnd As Long, ByVal action As Long) As Boolean
CallHotKey(窗体句柄,HotKey) HotKey ====0---------17 分别是0-----9 ...
其他书籍 1 #define GPBCON (*(volatile unsigned long *)0x56000010) 2 #define GPBDAT (*(volatile unsigned long
1 #define GPBCON (*(volatile unsigned long *)0x56000010)
2 #define GPBDAT (*(volatile unsigned long *)0x56000014)
3 #define GPFCON (*(volatile unsigned long *)0x56000050)
4 #define GPFDAT (*(volatile unsigned long *)0x56000054)
文章/文档 Traveling Salesman Problem (TSP) has been an interesting problem for a long time in classical optim
Traveling Salesman Problem (TSP) has been an interesting problem for a long
time in classical optimization techniques which are based on linear and nonlinear
programming. TSP can be described as follows: Given a number of cities to visit
and their distances from all other cities know, an optimal tra ...
软件设计/软件工程 Just what is a regular expression, anyway? Take the tutorial to get the long answer. The short answ
Just what is a regular expression, anyway?
Take the tutorial to get the long answer. The short answer is that a regular expression
is a compact way of describing complex patterns in texts. You can use them to search
for patterns and, once found, to modify the patterns in complex ways. You can also u ...
数据结构 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *
编程题(15_01.c)
结构
struct student
{
long num
char name[20]
int score
struct student *next
}
链表练习:
(1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中
的学号、成绩由键盘输入,一共n个节点。
(2).编写函数void print(struct student *head),输出 ...
软件设计/软件工程 堆栈的数据结构和操作 ypedef struct{ HGLOBAL hMem //堆栈全局内存句柄 POINT *lpMyStack //指向该句柄的指针 LONG ElementsNum /
堆栈的数据结构和操作
ypedef struct{
HGLOBAL hMem //堆栈全局内存句柄
POINT *lpMyStack //指向该句柄的指针
LONG ElementsNum //堆栈的大小
LONG ptr //指向栈顶得指针
磁盘编程 //按柱面和磁道来读取磁盘数据,要求 Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As
//按柱面和磁道来读取磁盘数据,要求
Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As Byte) As Boolean