亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

DOUBLE-linked

  • The Valgrind distribution has multiple tools. The most popular is the memory checking tool (called M

    The Valgrind distribution has multiple tools. The most popular is the memory checking tool (called Memcheck) which can detect many common memory errors such as: * touching memory you shouldn t (eg. overrunning heap block boundaries) * using values before they have been initialized * incorrect freeing of memory, such as double-freeing heap blocks * memory leaks.

    標簽: distribution The Valgrind checking

    上傳時間: 2014-01-14

    上傳用戶:xc216

  • EXAMPLE SOURCE CODE FOR TASM FILTER his filter accepts input through the standard input stream, con

    EXAMPLE SOURCE CODE FOR TASM FILTER his filter accepts input through the standard input stream, converts it and outputs it to the standard output stream. The streams are linked through pipes, such that the input stream is the output from the assembler being invoked, and the output stream is connected to the message window of the IDE, ie.

    標簽: input standard EXAMPLE accepts

    上傳時間: 2014-01-13

    上傳用戶:小碼農lz

  • Address book helps you look up your addresses from the system tray. It is quite useful in that way

    Address book helps you look up your addresses from the system tray. It is quite useful in that way 慶ause it stays out of the way and is easily accessible when needed. Double clicking on any URL will start the default web browser and take you to that URL. Double clicking on the phone number will dial that number. Every column supports sorting and can be customized to your needs. Preview will display the notes associated with each record. This program can also import Comma Separated Values (*csv) text files of Outlook Express.

    標簽: addresses Address system useful

    上傳時間: 2014-07-08

    上傳用戶:lyy1234

  • 1.功能 用高斯方法計算n重積分(C語言) 2.參數說明 int n : 積分重數 int js[n] : js[k]表示第k層積分區間所劃分的子區間 void (*ss)() : 指向

    1.功能 用高斯方法計算n重積分(C語言) 2.參數說明 int n : 積分重數 int js[n] : js[k]表示第k層積分區間所劃分的子區間 void (*ss)() : 指向計算各層積分上、下限的函數名(用戶自編) double (*f)() : 指向計算被積函數值的函數名(用戶自編) double gaus() : 函數返回積分值 3.文件說明 gaus.c為函數程序 gaus0.c為主函數程序

    標簽: int js void 積分

    上傳時間: 2014-01-05

    上傳用戶:731140412

  • 很多嵌入式系統

    很多嵌入式系統,特別是應用于圖像處理與高速數據采集等場合的嵌入式系統,都需要高速緩存大量的數據。DDR(Double Data Rate,雙數據速率)SDRAM由于其速度快、容量大,而且價格便宜,因此能夠很好地滿足上述場合對大量數據緩存的需求。但DDR SDRAM的接口不能直接與現今的微處理器和DSP的存儲器接口相連,需要在其間插入控制器實現微處理器或DSP對存儲器的控制。

    標簽: 嵌入式系統

    上傳時間: 2015-09-18

    上傳用戶:zjf3110

  • 三次樣條插值程序。編譯運行本程序后

    三次樣條插值程序。編譯運行本程序后,程序會彈出窗口及問句:“input the number of intervals:”,輸入插值的次數即可,程序將得到的次數保存在變量int n中。如果輸入的插值次數正確(n>=2),程序會顯示下一語句:"input the value of the variable:",此時輸入插值點即可,程序將得到的插值點保存在變量double v中。若插值點正確(v>=0&&v<=6),則程序將輸出插值結果。

    標簽: 程序 三次樣條 插值 編譯

    上傳時間: 2014-01-16

    上傳用戶:Avoid98

  • 實現一個類

    實現一個類,描述二維平面的直線Line。 描述屬性:私有屬性  直線所通過的點:Point p;  直線的斜率:double m 實現方法:  直線的構建;  返回直線的兩個屬性;  返回直線在Y軸上的截距:yIntercept ;  判斷兩條直線是否相等;  顯示直線的內容:y = mx + b  isParallelTo(Line line2),判斷本直線與直線line2是否平行;  isPeroendicularTo(Line line2),判斷本直線與直線line2是否垂直;  translate(double dx, double dy),將直線向右移動dx單位,向上移動dy單位;  rarate(double ta),將直線沿逆時針方向旋轉ta度

    標簽:

    上傳時間: 2015-10-24

    上傳用戶:Divine

  • 問題描述:編寫一個JAVA程序

    問題描述:編寫一個JAVA程序,用面向對象設計的方法編寫一個電話卡的類。包括卡號、密碼、余額、撥入號碼等 b)基本要求:類的屬性有卡號、密碼、余額、撥入號碼,電話卡的常用操作可以用連接電話方法、返回余額方法與通電話方法來實現。 c)方法功能描述: 構造方法(PhoneCard(卡號,密碼,余額,撥入號碼))可以完成屬性值初始化賦值,并判斷余額,余額為負就退出系統,請在構造方法中將初始時的連接置為false即表示沒有連接。 卡號long cardNumber 密碼private int password,余額double balance,撥入號碼string connectNumber boolean connected(一個布爾類型變量表示電話卡連接狀態,初始時默認沒有連接,值為false,當調用連接電話方法()后,在判斷卡號和密碼相匹配后值置為true) 連接電話方法(performConnection(卡號,密碼))可以完成檢查卡號和密碼,它是只有在卡號和密碼相匹配時才連接 返回余額方法(getBalance())得到電話卡的余額 通電話方法(performDial())是模擬通過過程中,余額會不斷減少,每調用此方法,電話卡的余額減少0。5元,打一次電話調用一次

    標簽: JAVA 編寫 程序

    上傳時間: 2014-01-20

    上傳用戶:1109003457

  • % 文件名:randlsbget.m % 程序員:余波 % 編寫時間:2007.6.25 % 函數功能: 本函數將完成提取隱秘于上的秘密信息 % 輸入格式舉例:result=( scover.

    % 文件名:randlsbget.m % 程序員:余波 % 編寫時間:2007.6.25 % 函數功能: 本函數將完成提取隱秘于上的秘密信息 % 輸入格式舉例:result=( scover.jpg ,56, secret.txt ,2001) % 參數說明: % output是信息隱藏后的圖象 % len_total是秘密信息的長度 % goalfile是提取出的秘密信息文件 % key是隨機間隔函數的密鑰 % result是提取的信息 function result=randlsbget(output,len_total,goalfile,key) ste_cover=imread(output) ste_cover=double(ste_cover) % 判斷嵌入信息量是否過大 [m,n]=size(ste_cover) frr=fopen(goalfile, a ) % p作為信息嵌入位計數器將信息序列寫回文本文件 p=1 % 調用隨機間隔函數選取像素點 [row,col]=randinterval(ste_cover,len_toal,key) for i=:len_toal if bitand(ste_cover(row(i),col(i)),1)==1 fwrite(frr,1, bit1 ) result(p,1) else fwrite(frr,0, bit1 ) result(p,1)=0 end if p==len_total break end p=p+1 end fclose(frr)

    標簽: randlsbget result scover 2007

    上傳時間: 2015-11-10

    上傳用戶:yzhl1988

  • 雙曲線回歸方程 HyperbolaRegress.cs 注意!該模型要求a與b的值要大于0!使用該模型時應注意驗證這個限制條件。我在實現模型時未加入任何出錯流程控制。X不能為0。 方程模型為

    雙曲線回歸方程 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

主站蜘蛛池模板: 五河县| 乐至县| 南漳县| 曲麻莱县| 荆州市| 岑巩县| 嵊泗县| 汽车| 马龙县| 邮箱| 靖安县| 长乐市| 昭通市| 定襄县| 平果县| 兴海县| 高州市| 福州市| 新昌县| 祁阳县| 平利县| 霍山县| 天台县| 花莲市| 霍林郭勒市| 始兴县| 金沙县| 临颍县| 西青区| 哈巴河县| 通海县| 凌源市| 昭苏县| 黄陵县| 博爱县| 长武县| 扎囊县| 沁阳市| 镇远县| 宽甸| 杭锦后旗|