package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("隊是空的,無法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
標簽: private public Node LinkQuery
上傳時間: 2016-07-08
上傳用戶:天誠24
This book is for all those people. • For the person who thinks programming is too hard • For the person who gets bogged down when writing or changing larger scripts (our analyst) • For the person who knows the wrong languages well (our programmer): languages like Java, C#, C++, and C are perfectly fine languages—in their niche.
標簽: 8226 programming people person
上傳時間: 2016-07-10
上傳用戶:lz4v4
本代碼是展示了如何通過delphi監控指定web站點的運行情況,如果web站點down掉的話,會實時報警給維護人員
上傳時間: 2016-07-13
上傳用戶:1101055045
The production of this book required the efforts of many people, but two in particular deserve to be singled out for their diligent, sustained, and unselfish efforts. Sally Stickney, the book s principal editor, navigated me through that minefield called the English language and contributed greatly to the book s readability. Marc Young, whose talents as a technical editor are nothing short of amazing, was relentless in tracking down bugs, testing sample code, and verifying facts. Sally, Marc: This book is immeasurably better because of you. Thanks.
標簽: production particular required efforts
上傳時間: 2016-07-15
上傳用戶:ve3344
大一時學c語言時做的一個基于turbo-c圖形庫的學生管理系統(非文本圖形方式),應該說當時花了不少心血。功能方面實現:調色(對8個默認的調色板的值進行更改),換膚(改界面顏色),時間,文件加密(用了類似轉子加密的方法),快捷鍵,錯誤提示,分頁等,注釋比較詳細,供初學c語言的人參考。需要將egavga.obj文件link起來才能脫離turbo-c環境執行,網上能找到相關教程。
上傳時間: 2014-01-02
上傳用戶:330402686
8b10b編解碼器,常用于camera link,1394等高速信號傳輸
上傳時間: 2013-12-29
上傳用戶:edisonfather
proface的觸摸屏和艾默生的變頻器通過此程序可相互通信,在屏上直接控制變頻器的起停,調變頻的其它參數,支持MEMORY-LINK,和艾默生的變頻器的協議
上傳時間: 2014-08-23
上傳用戶:cursor
USB無線網卡驅動,支持TP-LINK WN321,支持S3C2410+WLAN應用。
上傳時間: 2014-11-16
上傳用戶:ywqaxiwang
陳淑亭網絡課堂:采用iis+perlis方式編寫,A,B,C三個目錄代表3門課,也可以再加課程,teacher為老師資料目錄,student為學生資料目錄,down為下載目錄,所有管理配置都在setup.cgi,比如增加課程時,只需要配置%classkind 學生注冊后可以查看A,B,C三門的課程,老師注冊后必須由管理員開通后才能管理課程,管理員開通時必須設置老師所管理的課程,比如,可以設置老師A,B,C三門課的其中一門,或者全部的三門。老師在發表課程文章具有上傳附件的權限。在學生登陸后的計時采用了javascript和perl的結合,一個學生帳號的時間為12小時,用完后此帳號作廢。
上傳時間: 2014-12-06
上傳用戶:manlian
用多線程同步方法解決讀者閱覽問題 1) 每個讀者進入閱覽室后,即時顯示“Entered” 及其線程自定義標識,還同時顯示閱覽室共有幾名顧客及其所坐的位置。 2) 至少有10個讀者,每人閱覽至少3秒鐘。 3) 多個讀者須共享操作函數代碼。 2總的設計思想及系統平臺、語言、工具: 設計思想:程序設定的是10個讀者和5個座位,對讀者進行編號,依次進入閱覽室讀書,為每一座位列一表目,包括座號和讀者號等,讀者離開時要登出,即消掉登記的信息。 系統平臺:LINUX 語言:C語言 工具:vi編輯器、gcc編譯器 操作系統:linux操作系統 調試工具:edit、masm、link、debug. 3數據結構與模塊說明(功能與流程圖) 數據結構 int count=0 //記錄閱覽室讀者數量 sem_t full //定義閱覽室座位信號量 int seat[5] //用數組表示座位 pthread_t reader[10] //定義讀者線程 pthread_mutex_t mutex //定義互斥量 3.2功能說明 可以標識讀者,隨機為讀者設置在閱覽室的讀書時間 可以顯示閱覽室讀者的人數 可以顯示讀者所坐的位置,座位狀態以及列出空座位
標簽: 多線程同步
上傳時間: 2016-08-10
上傳用戶:zsjzc