一個學生管理系統,B/S架夠.非常好用,里面包括了原碼.可以學習修改
上傳時間: 2014-01-03
上傳用戶:維子哥哥
C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數,圓的面積 */ /* 將比較數值大小的函數寫在自編include文件內 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結果:%d %d %d\n", a, b, c) } 程序執行結果: 由小至大排序之后的結果:1 2 3 可將內建函數的include文件展開在自編的include文件中 圓圈的面積是=201.0619264
標簽: my_Include include define 3.141
上傳時間: 2014-01-17
上傳用戶:epson850
An automata implemented in C++ for searching a string of "abab" in a given string.
標簽: string implemented searching automata
上傳時間: 2013-12-26
上傳用戶:小儒尼尼奧
數據結構和算法Flash動畫演示 B樹的刪除,B樹的生長過程,串的順序存儲,單鏈表結點的插入,單鏈表結點的刪除,堆排序,二叉排序樹的刪除等
上傳時間: 2015-03-29
上傳用戶:kristycreasy
Developing Embedded Software in C,英文原版的,嵌入式開發的c。看了一定有收獲的。
標簽: Developing Embedded Software in
上傳時間: 2013-12-23
上傳用戶:1101055045
卡爾曼濾波器matlab源代碼。 function [Y,PY,KC]=myKalman(x,A,B,Q,H,R,y0,P0) 這是我課程設計時做的。
標簽: function myKalman matlab PY
上傳時間: 2014-10-28
上傳用戶:agent
用Matlab軟件以及雅克比迭代和高斯-賽德爾迭代解方程組Ax=b,分析、比較其結果
上傳時間: 2015-04-04
上傳用戶:123456wh
算法ebook(10部算法經典著作的合集) 算法ebook> 10部算法經典著作的合集 chm格式 (1)Fundamentals of Data Structures by Ellis Horowitz and Sartaj Sahni (2)Data Structures, Algorithms and Program Style Using C by James F. Korsh and Leonard J. Garrett (3)Data Structures and Algorithm Analysis in C by Mark Allen Weiss (4)Data Structures: From Arrays to Priority Queues by Wayne Amsbury (5)Information Retrieval: Data Structures & Algorithms edited by William B. Frakes and Ricardo Baeza-Yates (6)Introduction to Algorithms by Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest (7)Practical Data Structures in C++ by Bryan Flamig (8)Reliable Data Structures in C by Thomas Plum (9)Data Structures and Algorithms Alfred V. Aho, Bell Laboratories, Murray Hill, New Jersey John E. Hopcroft, Cornell University, Ithaca, New York Jeffrey D. Ullman, Stanford University, Stanford, California (10)DDJ Algorithms and Data Structures Articles
標簽: ebook Fundamentals Structures Ellis
上傳時間: 2015-04-04
上傳用戶:tfyt
Bochs is a highly portable open source IA-32 (x86) PC emulator written in C++, that runs on most popular platforms. It includes emulation of the Intel x86 CPU, common I/O devices, and a custom BIOS. Currently, Bochs can be compiled to emulate a 386, 486, Pentium, Pentium Pro or AMD64 CPU, including optional MMX, SSE, SSE2 and 3DNow! instructions. Bochs is capable of running most Operating Systems inside the emulation including Linux, DOS, Windows 95/98 and Windows NT/2000. Bochs was written by Kevin Lawton and is currently maintained by the Bochs project at "http://bochs.sourceforge.net".
標簽: emulator portable written highly
上傳時間: 2015-04-06
上傳用戶:FreeSky
這是一個分別用Bezier曲線和B樣條曲線進行曲線擬合的例子 程序用VB6.0中文版編寫 例子中需要一個窗體和一個按鈕(使用默認的名字) 在本例中,黑色的線條是對坐標系上各點的直接連線 黃色的線僅對點間連線進行近似擬合,并不通過每一個點,使用的是B樣條曲線 藍色的線通過除第一個點和最后一個點之外的每一個點,使用的是Bezier曲線
上傳時間: 2014-11-06
上傳用戶:manking0408