About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses memory mapped I/O (if available), supports cursors, and can create in-memory databases. Release focus: Major feature enhancements Changes: This release comes with many changes and new features. It can manage multiple databases in one file. A new flag (HAM_LOCK_EXCLUSIVE) places an exclusive lock on the file. hamsterdb was ported to Windows CE, and the Solution file for Visual Studio 2005 now supports builds for x64. Several minor bugs were fixed, performance was improved, and small API changes occurred. Pre-built libraries for Windows (32-bit and 64-bit) are available for download. Author: cruppstahl
標簽: C. hamsterdb structure database
上傳時間: 2013-12-11
上傳用戶:LouieWu
文法如下: (1)S->aAcBe (2)A->b (3)A->Ab (4)B->d 關於lr0的語法分析
上傳時間: 2015-11-22
上傳用戶:thinode
一、 一元三次回歸方程 CubicMultinomialRegress.cs 方程模型為Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buildFormula() 得到系數數組,存放順序與模型系數相反,即該數組中系數的值依次是d,c,b,a。 以后所述所有模型的系數存放均與此相同(多元線性回歸方程除外)。 public override double forecast(double x) 預測函數,根據模型得到預測結果 public override double computeR2() 計算相關系數(決定系數),系數越接近1,數據越滿足該模型。
標簽: CubicMultinomialRegress override public double
上傳時間: 2015-11-25
上傳用戶:13215175592
雙曲線回歸方程 HyperbolaRegress.cs 注意!該模型要求a與b的值要大于0!使用該模型時應注意驗證這個限制條件。我在實現模型時未加入任何出錯流程控制。X不能為0。 方程模型為 public override double[] buildFormula() 得到系數數組,存放順序與模型系數相反,即該數組中系數的值依次是b,a。 public override double forecast(double x) 預測函數,根據模型得到預測結果。 public override double computeR2()
標簽: HyperbolaRegress 模型 方程 cs
上傳時間: 2014-11-30
上傳用戶:youke111
對數回歸方程 LogarithmRegress.cs 方程模型為 Y=a*LnX+b public override double[] buildFormula() 得到系數數組,存放順序與模型系數相反,即該數組中系數的值依次是b,a。 public override double forecast(double x) 預測函數,根據模型得到預測結果。 public override double computeR2() 計算相關系數(決定系數),系數越接近1,數據越滿足該模型。
標簽: LogarithmRegress buildFormula override public
上傳時間: 2014-01-23
上傳用戶:330402686
三個候選人A、B、C,根據投票者在選票上對他們編號的填寫順序記分, !!!剛才傳的6.rar說明寫錯了,我再傳一次
標簽:
上傳時間: 2013-12-19
上傳用戶:13160677563
a.本程序在Windows xp 上調試通過。 b.在使用時先用ODBC注冊數據源,數據源名:addresslist(名稱不可以寫錯) c.第一次運行時,密碼為空。進入系統后可以修改密碼。
上傳時間: 2015-12-09
上傳用戶:sjyy1001
選舉投票程序 設代號為"A","B","C 的三個足球先生
上傳時間: 2013-11-26
上傳用戶:rocketrevenge
function Binary_Search(L,a,b,x) begin if a>b then return(-1) else begin m:=(a+b) div 2 if x=L[m] then return(m) else if x>L[m] then
標簽: begin Binary_Search function return
上傳時間: 2015-12-17
上傳用戶:tb_6877751
一.設計要求 1.道路有A.B兩路,一般情況A.B均有車時,兩路各放行10S. 2.紅綠燈轉換必須經過4秒黃燈閃爍. 3.若兩路均無車則保持原狀. 4.若一路通行無阻10秒后,另一路無車,則繼續放行此路,直到另一路有車. 5.若有緊急車輛通過兩路均無紅燈4秒,阻止一般車輛通過,讓緊急車輛通過6.在數碼管顯示各路通行的標志和剩余時間.
上傳時間: 2015-12-25
上傳用戶:siguazgb