圖書格式:chm 語 言: 英文 本書是講解ASP.NET 2.0 Framework 最全面的圖書,包含用VB.NET 和C# 兩種語言寫成的上百段程序代碼,覆蓋ASP.NET 2.0 Framework 的方方面面。卷1主要包括創(chuàng)建ASP.NET 頁面、設(shè)計ASP.NET 網(wǎng)站、數(shù)據(jù)訪問、創(chuàng)建組件、站點導航等。本書作者Stephen Walther曾榮獲微軟技術(shù)社區(qū)最高榮譽“軟件傳奇人物”稱號。作者Stephen Walther不僅是微軟的MVP,更因為此書榮獲微軟社區(qū)最高榮譽Software Legend(軟件傳奇人物),要知道,歷史上這一稱號的得主都是Richter、Petzold這樣的大師。他在ASP.NET界的地位可以想見。
上傳時間: 2016-02-05
上傳用戶:coeus
這篇文章是關(guān)于C++語言的一個新的擴展——標準模板庫的(Standard Template Library),也叫STL。 當我第一次打算寫一篇關(guān)于STL的文章的時候,我不得不承認我當時低估了這個話題的深度和廣度。有很多內(nèi)容要含蓋,也有很多詳細描述 STL的書。因此我重新考慮了一下我原來的想法。我為什么要寫這篇文章,又為什么要投稿呢?這會有什麼用呢?有再來一篇關(guān)于STL的文章的 必要嗎? 當我翻開Musser and Saini的頁時,我看到了編程時代在我面前消融。我能看到深夜消失了, 目標軟件工程出現(xiàn)了。我看到了可維護的代 碼。一年過去了,我使用STL寫的軟件仍然很容易維護。 讓人吃驚的是其他人可以沒有我而維護的很好! 然而,我也記得在一開始的時候很難弄懂那些技術(shù)術(shù)語。一次,我買了Musser&Saini,每件事都依次出現(xiàn),但是在那以前我最渴望得到的 東西是一些好的例子。 當我開始的時候,作為C++一部分的Stroustrup還沒出來,它覆蓋了STL。 因此我想寫一篇關(guān)于一個STL程序員的真實生活的文章可能會有用。如果我手上有一些好的例子的話,特別是象這樣的新題目,我會學的更 快。 另外一件事是STL應該很好用。因此,理論上說,我們應該可以馬上開始使用STL。
標簽: Standard Template Library 語言
上傳時間: 2016-02-06
上傳用戶:hebmuljb
(1)利用多項式擬合的兩個模塊程序求解下題: 給出 x、y的觀測值列表如下: x 0 1 2 3 4 5 y 2.08 7.68 13.8 27.1 40.8 61.2 試利用二次多項式y(tǒng)=a0+a1x+a2x2進行曲線擬合。 (1)多項式擬合方法:假設(shè)我們收集到兩個相關(guān)變量x、y的n對觀測值列表: x x0 x1 x2 x3 x4 x5 y y0 y1 y2 y3 y4 y5 我們希望用m+1個基函數(shù)w0(x),w1(x),…,wm(x)的一個線形組合 y=a0w0(x)+a1w1(x)+…+amwm(x) 來近似的表達x、y間的函數(shù)關(guān)系,我們把幾對測量值分別代入上式中,就可以得到一個線形方程組: a0w0(x0)+a1w1(x0)+…+amwm(x0)=y0 a0w0(x1)+a1w1(x1)+…+amwm(x1)=y1 … … a0w0(xn)+a1w1(xn)+…+amwm(xn)=yn 只需要求出該線形方程組的最小二乘解,就能得到所構(gòu)造的的多項式的系數(shù),從而解決問題。
上傳時間: 2016-02-07
上傳用戶:爺?shù)臍赓|(zhì)
用C++中的MFC編程實現(xiàn)正軸等角割圓柱投影,實現(xiàn)以下要求: 取克拉索夫斯基橢球 (1)制圖區(qū)域: Bs=0°, BN=25° LE=105°, LE=125° (2)經(jīng)緯線間隔: ΔB=ΔL=5° (3)制圖比例尺: 1:M0=1:1000 000 (4)標準緯線: Bk=±15° 計算經(jīng)緯網(wǎng)格點的 x, y,m,n, p
標簽: MFC 編程實現(xiàn) 正 投影
上傳時間: 2013-12-29
上傳用戶:himbly
加密程序源代碼* A 變成 C,B 變成 D,a 變成 c,b 變成 d,Y 變成 A, * z 變成 b,以此類推。非字母字符不變。
上傳時間: 2013-12-28
上傳用戶:stvnash
功能:編寫的計算皮亞諾相關(guān)系數(shù) 開發(fā)語言:ruby 調(diào)用:correlate(x,y) 其中,x,y為需要計算相關(guān)度的向量 調(diào)用示例: a = [3, 6, 9, 12, 15, 18, 21] b = [1.1, 2.1, 3.4, 4.8, 5.6] c = [1.9, 1.0, 3.9, 3.1, 6.9] c1 = correlate(a,a) # 1.0 c2 = correlate(a,a.reverse) # -1.0 c3 = correlate(b,c) # 0.8221970228 puts c1#,c2,c3
上傳時間: 2013-12-18
上傳用戶:skfreeman
C語言精彩百例第71-93例 第三篇 常用算法篇 實例71 鏈表的建立 實例72 鏈表的基本操作 實例73 隊列的應用 實例74 堆棧的應用 實例75 串的應用 實???76 樹的基本操作 實例77 冒泡排序法 實例78 堆排序 實例79 歸并排序 實例80 磁盤文件排序 實例81 順序查找 實例82 二分法查找 實例83 樹的動態(tài)查找 實例84 二分法求解方程 實例85 牛頓迭代法求解方程 實例86 弦截法求解方程 實例87 拉格朗日插值 實例88 最小二乘法擬合 實例89 辛普生數(shù)值積分 實例90 改進歐拉法 實例91 龍格-庫塔法 實例92 高斯消去法 實例93 正定矩陣求逆
上傳時間: 2016-03-24
上傳用戶:thinode
Intro/: Directory containing introductory examples. HelloWorld.c A simple program that draws a box and writes "Hello World" in HelloWorld.f it. data The data file for the introductory progressive example. Lines.c Reads the data from file "data" and plots just the curve with Lines.f no labels, viewport or anything indicating quantity or units. Viewport.c Restricts the graph to a viewport and frames the viewport, Viewport.f leaving the remainder of the area for labels, etc. CharLbls.c Adds labels for the chart title, X-axis title, and Y-axis CharLbls.f title. Tics.c Adds tic marks to the viewport edges, but since clipping was Tics.f not set correctly, tics extend outside the viewport. Clip.c Sets clipping such that tic marks are clipped at the viewport Clip.f boundaries. TicLabels.c Adds numeric tic labels to the graph this is the final TicLabels.f installment of the progressive example.
標簽: introductory HelloWorld containing Directory
上傳時間: 2016-03-29
上傳用戶:exxxds
多項式曲線擬合 任意介數(shù) Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use this just call PolyFit2 directly. usage: Call PolyFit by something like this. CPolyFit<double> PolyFitObj double correlation_coefficiant = PolyFitObj.PolyFit(X, Y, A) where X and Y are vectors of doubles which must have the same size and A is a vector of doubles which must be the same size as the number of coefficients required. returns: The correlation coefficient or -1 on failure. produces: A vector (A) which holds the coefficients.
標簽: Least-squares arbitrary Purpose Builder
上傳時間: 2013-12-18
上傳用戶:宋桃子
實現(xiàn)最優(yōu)二叉樹的構(gòu)造;在此基礎(chǔ)上完成哈夫曼編碼器與譯碼器。 假設(shè)報文中只會出現(xiàn)如下表所示的字符: 字符 A B C D E F G H I J K L M N 頻度 186 64 13 22 32 103 21 15 47 57 1 5 32 20 57 字符 O P Q R S T U V W X Y Z , . 頻度 63 15 1 48 51 80 23 8 18 1 16 1 6 2 要求完成的系統(tǒng)應具備如下的功能: 1.初始化。從終端(文件)讀入字符集的數(shù)據(jù)信息,。建立哈夫曼樹。 2.編碼:利用已建好的哈夫曼樹對明文文件進行編碼,并存入目標文件(哈夫曼碼文件)。 3.譯碼:利用已建好的哈夫曼樹對目標文件(哈夫曼碼文件)進行編碼,并存入指定的明文文件。 4.輸出哈夫曼編碼文件:輸出每一個字符的哈夫曼編碼。
上傳時間: 2014-11-23
上傳用戶:shanml
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1