C51的兩個程序,一個是將LONG型十六進制數據轉換成LONG型的十進制數,另一個則是逆運算
上傳時間: 2014-01-24
上傳用戶:maizezhen
a small program by Yuval Fisher that has gone a long way to revealing some of the secrets of fracal image compression.
標簽: revealing program secrets Fisher
上傳時間: 2015-12-24
上傳用戶:腳趾頭
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.
標簽: data Techniques processing structure
上傳時間: 2014-03-10
上傳用戶:cc1
武林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 F1-----F8 CallBase(窗體句柄,Action) Action==0-------N 分別實現不同的功能 Action=0 選怪 函數反回值是 布爾值 ( 窗體句柄,Action 窗體句柄,HotKey 都為DWORD值)
標簽: ByVal CallHotKey Function Private
上傳時間: 2013-11-25
上傳用戶:maizezhen
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)
標簽: volatile unsigned define long
上傳時間: 2013-12-27
上傳用戶:BIBI
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 travel route has to be found so that each city is visited one and only once with the least possible distance traveled. This is a simple problem with handful of cities but becomes complicated as the number increases.
標簽: interesting Traveling classical Salesman
上傳時間: 2016-02-06
上傳用戶:rocwangdp
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 use them to launch programmatic actions that depend on patterns. A tongue-in-cheek comment by programmers is worth thinking about: "Sometimes you have a programming problem and it seems like the best solution is to use regular expressions now you have two problems." Regular expressions are amazingly powerful and deeply expressive. That is the very reason writing them is just as error-prone as writing any other complex programming code. It is always better to solve a genuinely simple problem in a simple way when you go beyond simple, think about regular expressions. Tutorial: Using regular expressions
標簽: expression the tutorial regular
上傳時間: 2013-12-19
上傳用戶:sardinescn
編程題(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),輸出鏈表,格式每行一個結點,包括學號,姓名,分數。 (3).編寫函數struct student * merge(struct student *a,struct student *b), 將已知的a,b兩個鏈表 按學號升序合并,若學號相同則保留成績高的結點。 (4).編寫函數struct student * del(struct student *a,struct student *b),從a鏈表中刪除b鏈表中有 相同學號的那些結點。 (5).編寫main函數,調用函數creat建立2個鏈表a,b,用print輸出倆個鏈表;調用函數merge升序合并2個 鏈表,并輸出結果;調用函數del實現a-b,并輸出結果。 a: 20304,xxxx,75, 20311,yyyy,89 20303,zzzz,62 20307,aaaa,87 20320,bbbb,79 b: 20302,dddd,65 20301,cccc,99 20311,yyyy,87 20323,kkkk,88 20307,aaaa,92 20322,pppp,83
上傳時間: 2016-04-13
上傳用戶:zxc23456789
堆棧的數據結構和操作 ypedef struct{ HGLOBAL hMem //堆棧全局內存句柄 POINT *lpMyStack //指向該句柄的指針 LONG ElementsNum //堆棧的大小 LONG ptr //指向棧頂得指針
標簽: ElementsNum lpMyStack HGLOBAL ypedef
上傳時間: 2013-11-26
上傳用戶:15736969615
//按柱面和磁道來讀取磁盤數據,要求 Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As Byte) As Boolean
標簽: ByVal Long Cylinders Function
上傳時間: 2014-01-13
上傳用戶:zxc23456789