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