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

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

Stacks

  • This a separate release of the OpenSS7 X/Open XTI/TLI library, TLI modules (timod, tirdwr) and the I

    This a separate release of the OpenSS7 X/Open XTI/TLI library, TLI modules (timod, tirdwr) and the INET driver (inet) that provides Unix98 compatible interface to Linux NET4 TCP/IP Stacks, and all the necessary manpages and other documentation. Although these components are contained in our LiS and Linux Fast-STREAMS releases, this tarball configures, builds and installs these components separate from those releases.

    標簽: TLI the separate OpenSS7

    上傳時間: 2015-03-12

    上傳用戶:mikesering

  • 十部經典算法合集 .chm Fundamentals of Data Structures by Ellis Horowitz and Sartaj Sahni PREFACE C

    十部經典算法合集 .chm Fundamentals of Data Structures by Ellis Horowitz and Sartaj Sahni PREFACE CHAPTER 1: INTRODUCTION CHAPTER 2: ARRAYS CHAPTER 3: Stacks AND QUEUES CHAPTER 4: LINKED LISTS CHAPTER 5: TREES CHAPTER 6: GRAPHS CHAPTER 7: INTERNAL SORTING CHAPTER 8: EXTERNAL SORTING CHAPTER 9: SYMBOL TABLES CHAPTER 10: FILES APPENDIX A: SPARKS APPENDIX B: ETHICAL CODE IN INFORMATION PROCESSING APPENDIX C: ALGORITHM INDEX BY CHAPTER

    標簽: Fundamentals Structures Horowitz PREFACE

    上傳時間: 2015-05-19

    上傳用戶:維子哥哥

  • This document describes the uIP TCP/IP stack. The uIP TCP/IP stack is an extremely small implementat

    This document describes the uIP TCP/IP stack. The uIP TCP/IP stack is an extremely small implementation of the TCP/IP protocol suite intended for embedded systems running low-end 8 or 16-bit microcon-trollers. The code size and RAM requirements of uIP is an order of magnitude smaller than other generic TCP/IP Stacks today.

    標簽: stack implementat TCP describes

    上傳時間: 2015-09-18

    上傳用戶:zsjinju

  • xl2tpd a Layer 2 Tunneling Protocol (L2TP) daemon. It supports IPsec SA reference tracking, which en

    xl2tpd a Layer 2 Tunneling Protocol (L2TP) daemon. It supports IPsec SA reference tracking, which enables the IPsec Stacks to support multiple l2tp clients behind the same NAT router and multiple l2tp clients on the same internal IP address. It is a fork of "l2tpd". Release focus: Minor feature enhancements Changes: Support for passwordfd, a workaround for some Cisco routers, and extended logging.

    標簽: Tunneling reference Protocol supports

    上傳時間: 2014-01-20

    上傳用戶:541657925

  • With this foundation, you explore a development model that addresses the complete range of issues in

    With this foundation, you explore a development model that addresses the complete range of issues in the design of embedded communications software, including real-time operating systems, hardware and software partitioning, layering, and protocol Stacks.

    標簽: development foundation addresses complete

    上傳時間: 2016-01-16

    上傳用戶:zyt

  • This the fourth edition of the Writing Device Drivers articles. This article will introduce the idea

    This the fourth edition of the Writing Device Drivers articles. This article will introduce the idea of device Stacks and how devices interact with each other. We will use the previously created example device driver to demonstrate this topic. To do this we will introduce the idea of a “filter” driver in which we will create to attach to our own driver’s device stack.

    標簽: the This introduce articles

    上傳時間: 2016-01-28

    上傳用戶:CSUSheep

  • 輕易學好C++編程技巧 - 進楷 (香港科技大學筆記 19課) 內容包括 1) base C++ review, 2) Pointers and Dynamic Objects, 3) R

    輕易學好C++編程技巧 - 進楷 (香港科技大學筆記 19課) 內容包括 1) base C++ review, 2) Pointers and Dynamic Objects, 3) Recursion,Linked Lists, 4) Stacks and Queues, 5) Algorithm Analysis, 6) Insertion Sort and Mergesort, 7) Quicksort, 8) Heaps and Heapsort, 9) Lower Bound of Sorting and Radix Sort, 10) Binary Trees and Binary Search Trees 11) AVL Trees, 12) B+ Trees 13) Graphs and Breadth-First Search 14) Depth-First Search 15) Connected Components, Directed Graphs, 16) Topological Sort 17) Hashing 18) Pattern Matching 19) Additional Review

    標簽: Pointers Dynamic Objects review

    上傳時間: 2014-10-10

    上傳用戶:chfanjiang

  • CppReference 對于c/c++的詳盡說明 C/C++ Reference General C/C++ Pre-processor commands Operator P

    CppReference 對于c/c++的詳盡說明 C/C++ Reference General C/C++ Pre-processor commands Operator Precedence Escape Sequences ASCII Chart Data Types Keywords Standard C Library Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions All C Functions C++ C++ I/O C++ Strings C++ String Streams Miscellaneous C++ C++ Standard Template Library C++ Algorithms C++ Vectors C++ Double-Ended Queues C++ Lists C++ Priority Queues C++ Queues C++ Stacks C++ Sets C++ Multisets C++ Maps C++ Multimaps C++ Bitsets Iterators All C++ Functions

    標簽: Pre-processor CppReference Reference Operator

    上傳時間: 2016-10-26

    上傳用戶:aeiouetla

  • 44b0公版的測試程序

    44b0公版的測試程序, ******************************************************* * NAME : 44BINIT.S * * Version : 10.JAn.2003 * * Description: * * C start up codes * * Configure memory, Initialize ISR ,Stacks * * Initialize C-variables * * Fill zeros into zero-initialized C-variables *

    標簽: 44b0 測試程序

    上傳時間: 2013-12-22

    上傳用戶:teddysha

  • 16進制轉十進制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定義鍵盤輸入需要的緩沖區 DATAS ENDS Stacks SEGMENT db 200 dup(?) Stacks ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:Stacks START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a號功能,輸入一個字符串 mov ah,0ah               ;用回車結束 int 21h mov dl,0ah               ;再進行換行,以便在下一行顯示轉換后的字符串  mov ah,2     int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符個數,作為循環的次數 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小寫字母,則轉換為大寫字母 mov [w],ax mov dl,[bx]             ;取出一個字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循環,處理完整個字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    標簽: 匯編

    上傳時間: 2015-04-02

    上傳用戶:wcc0310

主站蜘蛛池模板: 和硕县| 扶沟县| 涞水县| 尉氏县| 襄汾县| 霍城县| 汨罗市| 新民市| 如东县| 清徐县| 海城市| 桂平市| 丹东市| 临沧市| 肇庆市| 城口县| 舟山市| 云阳县| 容城县| 深圳市| 玉树县| 景洪市| 宝兴县| 滦平县| 台中市| 彭阳县| 林西县| 宽甸| 塘沽区| 广西| 绥江县| 河南省| 嵊州市| 乾安县| 汉川市| 乐业县| 邯郸市| 神木县| 天津市| 屏南县| 天台县|