This a full 3-tier dababase application which includes a activex dll project(business objects) and a standard exe(UI). Besides all the database techniques it demonstrates, it also shows how to make MSHFlexgrid a editable grid(with combobox, checkbox, datetimepicker) and how to merge a toolbar for multi forms.
標簽: application dababase business includes
上傳時間: 2014-01-01
上傳用戶:qq21508895
VC常用數值算法集\C7 ECLASS.CPP ECLAZZ.CPP INDEXX.CPP PIKSR2.CPP PIKSRT.CPP QCKSRT.CPP RANK.CPP SHELL.CPP SORT2.CPP SORT3.CPP SORT.C
上傳時間: 2015-05-28
上傳用戶:yuzsu
If we have two individually sorted vectors "a" and "b" but they are not sorted with respect to each other and we want to merge them into vector "c" such that "c" is also a sorted vector. Then c=mergesorted(a,b) can be used.
標簽: sorted individually respect vectors
上傳時間: 2015-09-23
上傳用戶:comua
This a A* pathfinding example to illustrate how to implement a A* pathfinding algorithm into your program. It s a port from Patrick Lesters example in BlitzBasic to VB.Net. It uses a Binary Heap class I made to sort the score values.
標簽: pathfinding illustrate algorithm implement
上傳時間: 2013-12-25
上傳用戶:shawvi
This source code is about the basic sorting algorithm implemented in C#. The algorithms included are Bubble Sort, Insertion Sort, Selection Sort. User can trace how s the sorting algorithm works.
標簽: implemented algorithms algorithm included
上傳時間: 2013-12-25
上傳用戶:woshiayin
這是個在Linux系統下用C編寫的一個shell程序,這個shell程序實現了包括vi,add,ls,sort,args,history等功能。
上傳時間: 2014-11-25
上傳用戶:qlpqlq
一、課程設計題目、內容、要求 題目:《學生成績管理系統》(第二套 難度:2) 內容:按要求完成的基礎上,增加了輸入學號查詢學生記錄的功能,和錯誤輸入報錯功能 要求: 1)輸入將本班學生的信息(每個學生至少包括學號、姓名、科目成績(三門)、學分、平均分)。 A.要求編寫函數sort對個學生按某個條件(比如某科成績,學號,學分)升序或降序(可選擇)排序,并將結果(包括名次、學號、姓名、成績、學分、平均分)顯示出來。 B.編寫函數find,用折半法查找某科某個成績,并將結果打印出來。 C.要求編寫函數fun找出所有及格的同學,并將他們的信息存顯示出來。
標簽: 管理系統
上傳時間: 2015-11-12
上傳用戶:徐孺
[問題描述] 將N個關鍵字去整數的記錄進行整序, 以使所有關鍵字為非負數的記錄排在關鍵字為負數的記錄之前,要求使用最少的附加空間,且算法的時間復雜度為O(N) [輸入] 待排序記錄個數,各關鍵字的值。 [輸出] 關鍵字從正負分開,正數在前 [存儲結構] 待排序記錄順序存儲。 [算法的基本思想] 快速排序算法每次任取一個記錄的關鍵字為標準,將其余記錄分為兩組將,N個關鍵字去整數的記錄進行整序, 以使所有關鍵字為非負數的記錄排在關鍵字為負數的記錄之前。 #include <iostream> using namespace std #define MAXNUM 100//設文件的最長可能長度 void sort(int* keys, const int len)//排序
上傳時間: 2014-01-13
上傳用戶:aig85
經典的剪枝,全排序,排序組合。使用了很棒的遞歸算法。a good sort agorithm.
標簽:
上傳時間: 2013-12-10
上傳用戶:agent
#if !defined(AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_) #define AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CGAQueen { public: CGAQueen(int nPopulation,int nIteration,float Mutation,int mChBoard) virtual ~CGAQueen() void Clear() // to clear chess board with 0 value void InitialPopulation() // to create the first and initial randompopulation void FillArea(int index) // to fill chess board with desired chromosome int CostFunc(int index) // determine the cost of matrix[index][index] void PopulationSort() // to sort population from the best to the worst void GenerateCrossOverMatrix() // a way to create children from parent is CcrossOver void Mating() // to create children from parents void Ap
標簽: AFX_GAQUEEN_H INCLUDED defined define
上傳時間: 2015-12-27
上傳用戶:wuyuying