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

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

Q-Function

  • Student result management system Use the C language realization system 2, the data structure mak

    Student result management system Use the C language realization system 2, the data structure making use of the structure body several realization student s result design 3, the system have increment, search, insert, row preface etc. basic function 4, the each function mold piece request of system use the form of function realization 5, completion design mission combine write a course a design report. 6, student the existence document of the result information in

    標簽: system realization management structure

    上傳時間: 2013-11-29

    上傳用戶:1966640071

  • 本書由知名的C++專家Matthew H.Austern執筆

    本書由知名的C++專家Matthew H.Austern執筆,引導你進入泛型編程思維模型,并將你帶往此一模型的最重要成品:C++ Standard Template Library(STL)。本書揭示STL的奧秘,告訴你STL不僅僅是一組方便運用的容器類(container classes)。對于泛型組件和可交互作用的組件而言,STL是一個具備擴充能力的框架(framework)、 《泛型編程與STL》闡述了泛型編程的中心思想:concepts、modeling、refinement,并為你展示這些思想如何導出STL的基礎概念:iterators、containers、function objects。循此路線,你可以把STL想像為一個由concepts(而非明確之functions或classes)組成的程序庫:、你將學習其正式結構并因此獲得其潛在威力所帶來的完整優勢。本書使你能夠: ●以你自己的“可移植組件”及“可交互作用之泛型組件”擴充STL; ●產生一些算法,讓它們和它們所處理之型別(types)及數據結構徹底劃清界線; ●撰寫更精致、更高效、更有效力的代碼,可跨平臺重復使用。

    標簽: Matthew Austern

    上傳時間: 2014-01-06

    上傳用戶:Avoid98

  • 運行結果后產生華夏字樣

    運行結果后產生華夏字樣,在提示符后從鍵盤上輸入Q(或q)退出這個程序。,,Asm

    標簽: 運行 華夏

    上傳時間: 2013-12-13

    上傳用戶:Amygdala

  • % 文件名: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

  • PHP留言本 設計流程: 1.需求分析: 留言本要是實現的功能是用戶留言

    PHP留言本 設計流程: 1.需求分析: 留言本要是實現的功能是用戶留言,回復留言。顯示留言用戶的信息,顯示回復信息和回復信息的用戶信息。設計一個管理員管理留言功能。 2.數據庫設計: 在mysql下創建相應的數據庫。 3.代碼編寫: 使用php語言編寫代碼。 運行環境: Windows/linux操作系統 PHP環境 + mysql 功能概述: 1. 留言和回復留言功能 2. 顯示留言者的留言時間,email,QQ號碼 3. 可以向留言者發送email 4. 能在線編輯HTML留言(限制功能) 5. 比較可愛(Q)的界面 6. 管理員管理功能

    標簽: PHP 留言本 用戶

    上傳時間: 2015-11-16

    上傳用戶:wanghui2438

  • [輸入] 圖的頂點個數N

    [輸入] 圖的頂點個數N,圖中頂點之間的關系及起點A和終點B [輸出] 若A到B無路徑,則輸出“There is no path” 否則輸出A到B路徑上個頂點 [存儲結構] 圖采用鄰接矩陣的方式存儲。 [算法的基本思想] 采用廣度優先搜索的方法,從頂點A開始,依次訪問與A鄰接的頂點VA1,VA2,...,VAK, 訪問遍之后,若沒有訪問B,則繼續訪問與VA1鄰接的頂點VA11,VA12,...,VA1M,再訪問與VA2鄰接頂點...,如此下去,直至找到B,最先到達B點的路徑,一定是邊數最少的路徑。實現時采用隊列記錄被訪問過的頂點。每次訪問與隊頭頂點相鄰接的頂點,然后將隊頭頂點從隊列中刪去。若隊空,則說明到不存在通路。在訪問頂點過程中,每次把當前頂點的序號作為與其鄰接的未訪問的頂點的前驅頂點記錄下來,以便輸出時回溯。 #include<stdio.h> int number //隊列類型 typedef struct{ int q[20]

    標簽: 輸入

    上傳時間: 2015-11-16

    上傳用戶:ma1301115706

  • 為基帶系統測試誤碼率而寫的數字噪聲程序

    為基帶系統測試誤碼率而寫的數字噪聲程序,包括噪聲產生程序和一個測試文件。可以分別產生兩路噪聲供I,Q兩路使用,速率80Mbps左右。

    標簽: 基帶 系統測試 數字 程序

    上傳時間: 2015-11-19

    上傳用戶:米卡

  • A system simulation environment in Matlab/Simulink of RFID is constructed in this paper. Special at

    A system simulation environment in Matlab/Simulink of RFID is constructed in this paper. Special attention is emphasized on the analog/RF circuit.Negative effects are concerned in the system model,such as phase noise of the local oscillator,TX-RX coupling,reflection of the environment, AWGN noise,DC offset,I/Q mismatch,etc.Performance of the whole system can be evaluated by changing the coding method,parameters of building blocks,and operation distance.Finally,some simulation results are presented in this paper.

    標簽: environment constructed simulation Simulink

    上傳時間: 2014-01-09

    上傳用戶:zhangliming420

  • Software Testing, Second Edition provides practical insight into the world of software testing and q

    Software Testing, Second Edition provides practical insight into the world of software testing and quality assurance. Learn how to find problems in any computer program, how to plan an effective test approach and how to tell when software is ready for release. Updated from the previous edition in 2000 to include a chapter that specifically deals with testing software for security bugs, the processes and techniques used throughout the book are timeless. This book is an excellent investment if you want to better understand what your Software Test team does or you want to write better software.

    標簽: practical Software provides software

    上傳時間: 2014-08-01

    上傳用戶:zhaiyanzhong

  • The subroutines glkern.f and lokern.f use an efficient and fast algorithm for automatically adapti

    The subroutines glkern.f and lokern.f use an efficient and fast algorithm for automatically adaptive nonparametric regression estimation with a kernel method. Roughly speaking, the method performs a local averaging of the observations when estimating the regression function. Analogously, one can estimate derivatives of small order of the regression function.

    標簽: automatically subroutines and algorithm

    上傳時間: 2015-11-25

    上傳用戶:luke5347

主站蜘蛛池模板: 霍城县| 金川县| 沁源县| 滦平县| 鄯善县| 启东市| 仪征市| 伊宁市| 肇庆市| 深圳市| 舒城县| 丘北县| 策勒县| 嘉荫县| 津南区| 光泽县| 渑池县| 自贡市| 赤壁市| 井冈山市| 保靖县| 钟祥市| 革吉县| 许昌县| 江源县| 长垣县| 德格县| 贵港市| 会宁县| 锦州市| 贵定县| 车险| 蛟河市| 安多县| 黄浦区| 汝州市| 安吉县| 合阳县| 安陆市| 沐川县| 万州区|