dive int python document
上傳時間: 2016-01-31
上傳用戶:waizhang
There is a shared object – int array[] between Write and Read. Write sets the array, Read gets the array and sorts ascending. Write a program to implement the write/read question by using synchronization mechanism and GUI.
上傳時間: 2016-02-02
上傳用戶:playboys0
huffman 編碼。typedef struct { int weight int flag int parent int lchild int rchild }hnodetype
標簽: int huffman typedef struct
上傳時間: 2016-02-06
上傳用戶:yan2267246
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.
標簽:
上傳時間: 2016-02-26
上傳用戶:曹云鵬
數據結構(嚴慰敏)配套純c代碼實驗十 typedef int InfoType // 定義其它數據項的類型 typedef int KeyType // 定義RedType類型的關鍵字為整型 struct RedType // 記錄類型(同c10-1.h) { KeyType key // 關鍵字項 InfoType otherinfo // 其它數據項 } typedef char KeysType // 定義關鍵字類型為字符型 #include"c1.h" #include"c10-3.h" void InitList(SLList &L,RedType D[],int n) { // 初始化靜態鏈表L(把數組D中的數據存于L中) char c[MAX_NUM_OF_KEY],c1[MAX_NUM_OF_KEY] int i,j,max=D[0].key //
標簽: typedef int InfoType KeyType
上傳時間: 2016-03-03
上傳用戶:2404
#include"c1.h" typedef int ElemType #include"c2-2.h" #include"bo2-4.cpp" void MergeList_CL(LinkList &La,LinkList Lb) { LinkList p=Lb->next Lb->next=La->next La->next=p->next free(p) La=Lb }
標簽: include MergeList_C ElemType typedef
上傳時間: 2016-03-03
上傳用戶:rishian
Status StrAssign(SString T,char *chars) { // 生成一個其值等于chars的串T int i if(strlen(chars)>MAXSTRLEN) return ERROR else { T[0]=strlen(chars) for(i=1 i<=T[0] i++) T[i]=*(chars+i-1) return OK } }
標簽: chars StrAssign SString Status
上傳時間: 2014-01-10
上傳用戶:lwwhust
Status CreateSMatrix(RLSMatrix &M) { // 創建稀疏矩陣M int i Triple T Status k printf("請輸入矩陣的行數,列數,非零元素數:") scanf("%d,%d,%d",&M.mu,&M.nu,&M.tu) M.data[0].i=0 // 為以下比較做準備 for(i=1 i<=M.tu i++) { do {
標簽: Status CreateSMatrix RLSMatrix Triple
上傳時間: 2013-12-22
上傳用戶:shanml
class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilitary() void printStandard() private: int hour int minute int second }
標簽: int Time void printMilita
上傳時間: 2013-12-20
上傳用戶:hwl453472107
快速排序(qsort)在程序開發中的七種用法(VC)。其中列舉了對int和char型數組排序、結構和類的一級二級排序等,具體的cmp函數。
上傳時間: 2014-11-08
上傳用戶:xauthu