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

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

話務(wù)

  • auxilary files for the Crypt Breakers Workbench (cbw). CBW is a multi-window integrated workbench o

    auxilary files for the Crypt Breakers Workbench (cbw). CBW is a multi-window integrated workbench of tools that help a cryptanalist read files encrypted with the BSD4.2 crypt command. Anyone may copy, modify, use, or redistribute this system. It was originally written by Robert W. Baldwin at MIT

    標簽: multi-window integrated Workbench workbench

    上傳時間: 2013-12-10

    上傳用戶:cjl42111

  • 本書分為上篇、中篇和下篇三個部分

    本書分為上篇、中篇和下篇三個部分,上篇為Windows CE結構分析,中篇為Windows CE情景分析,下篇為實驗手冊。每一篇又劃分為若 干章。上篇包含有引言,Windows CE體系結構,處理 器排程,儲存管理 ,檔案系統和設備管理 等六 章。中篇包含有系統初始化,處理 器排程過程,分頁處理 ,檔案處理 和驅動器載入等五章。下篇包含有Windows CE應用程式開發,Windows CE系統開發,評測與總結以及實習等四章。 上篇的重點在於分析Windows CE kernel的結構以及工作原理 。這個部分是掌握Windows CE作業系統的基礎。 中篇重點在於分析Windows CE kernel的實際運行 過程。如果說 上篇是從靜態的角度 分析Windows CE kernel,那麼中篇則是試圖從動態的角度 給讀 者一個有關Windows CE kernel的描述。希望讀 者能夠通過對中篇的閱讀 理 解,在頭腦中形成有關Windows CE kernel的多方位的運作情景。 下篇著重於有關Windows CE的應用。對理 論 的掌握最終要應用到實務中。

    標簽:

    上傳時間: 2013-12-23

    上傳用戶:FreeSky

  • This document is an operation guide for the MPC8XXFADS board. It contains operational, functional a

    This document is an operation guide for the MPC8XXFADS board. It contains operational, functional and general information about the FADS. The MPC8XXFADS is meant to serve as a platform for s/ w and h/w development around the MPC8XX family processors. Using its on-board resources and its associated debugger, a developer is able to download his code, run it, set breakpoints, display memory and registers and connect his own proprietary h/w via the expansion connectors, to be incorporated to a desired system with the MPC8XX processor.

    標簽: operational MPC8XXFADS functional operation

    上傳時間: 2014-03-10

    上傳用戶:zsjinju

  • Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 2)算法描述: a)初始化:d

    Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結束:dis即為所有點對的最短路徑矩陣 3)算法小結:此算法簡單有效,由于三重循環結構緊湊,對于稠密圖,效率要高于執行|V|次Dijkstra算法。時間復雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍色部分,可以更直觀地得到I,j的連通情況。

    標簽: Floyd-Warshall Shortest Pairs Paths

    上傳時間: 2013-12-01

    上傳用戶:dyctj

  • This program is copyrighted by it s author and you are granted a free license to use the program fo

    This program is copyrighted by it s author and you are granted a free license to use the program for non-commercial purposes. If you are interested in using the program for commercial purposes please contact Kevin W. Russell at CIS 71551,253 for licensing information.

    標簽: program copyrighted granted license

    上傳時間: 2016-02-18

    上傳用戶:wangzhen1990

  • unix環境高級編程英文版

    unix環境高級編程英文版,很經典的一本書 Advanced Programming in the UNIX® Environment: Second Edition By W. Richard Stevens, Stephen A. Rago Publisher: Addison Wesley Professional Pub Date: June 17, 2005 ISBN: 0201433079 Pages: 960

    標簽: unix 環境 高級編程 英文

    上傳時間: 2013-12-22

    上傳用戶:qiao8960

  • 編寫一個用SOR法解方程組Ax=b的計算機程序

    編寫一個用SOR法解方程組Ax=b的計算機程序,其中 要求程序中不存系數A,分別對不同的階數(例如n=15,80)取w=1.7,1.8,1.9,進行迭代,記錄近似解 達到 時所用迭代次數k,觀察松弛因子對收斂速度的影響。

    標簽: SOR Ax 編寫 方程

    上傳時間: 2013-12-25

    上傳用戶:wcl168881111111

  • inetutils是在unix和linux下

    inetutils是在unix和linux下, 專門提供ftp和telnet服務的軟體。

    標簽: inetutils linux unix

    上傳時間: 2014-10-13

    上傳用戶:ryb

  • 數據結構 1、算法思路: 哈夫曼樹算法:a)根據給定的n個權值{W1

    數據結構 1、算法思路: 哈夫曼樹算法:a)根據給定的n個權值{W1,W2… ,Wn }構成 n棵二叉樹的集合F={T1,T2…,T n },其中每棵二叉樹T中只有一個帶權為W i的根結點,其左右子樹均空;b)在F中選取兩棵根結點的權值最小的樹作為左右子樹構造一棵新的二叉樹,且置新的二叉樹的根結點的權值為其左、右子樹上結點的權值之和;c)F中刪除這兩棵樹,同時將新得到的二叉樹加入F中; d)重復b)和c),直到F只含一棵樹為止。

    標簽: 算法 W1 數據結構

    上傳時間: 2016-03-05

    上傳用戶:lacsx

  • Compile SQLite using the cross-compiler such as arm-linux-gcc first, get sqlite-3.3.6.tar.gz from w

    Compile SQLite using the cross-compiler such as arm-linux-gcc first, get sqlite-3.3.6.tar.gz from www.sqlite.org unzip it, #tar -zxvf sqlite-3.3.6.tar.gz change into the sqlite-3.3.6 directory cd sqlite-3.3.6

    標簽: cross-compiler arm-linux-gcc Compile SQLite

    上傳時間: 2016-03-14

    上傳用戶:qb1993225

主站蜘蛛池模板: 永平县| 西林县| 视频| 永德县| 阳城县| 交口县| 无锡市| 东方市| 本溪| 山丹县| 抚宁县| 镇原县| 精河县| 惠州市| 漳浦县| 正镶白旗| 阿坝| 怀宁县| 崇州市| 鸡东县| 怀仁县| 新乐市| 昌宁县| 若尔盖县| 阿合奇县| 工布江达县| 安义县| 东海县| 武夷山市| 水富县| 新民市| 沙洋县| 新乐市| 泗阳县| 东城区| 东乡族自治县| 集贤县| 凉城县| 垫江县| 延川县| 荣昌县|