虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

read-write

  • this code is a parallel programming code . such code is esay but is very useful to understand how to

    this code is a parallel programming code . such code is esay but is very useful to understand how to write the parallel code.

    标签: code programming understand is

    上传时间: 2013-12-29

    上传用户:

  • Introduction to GPS ToolKit Pro 1.0 GPS ToolKit Pro is an ActiveX object that makes it easy to add

    Introduction to GPS ToolKit Pro 1.0 GPS ToolKit Pro is an ActiveX object that makes it easy to add GPS support to any Visual Basic, Visual C++, Delphi, Excel, or scripting project that supports ActiveX controls. GPS data (including lat/lon, speed, course, altitude, and dozens of other datasets) can be accessed through GPS ToolKit s properties, and GPS ToolKit s multithreaded event-based architecture notifies your application when data has been updated, saving you from having to write messy polling routines.

    标签: ToolKit Introduction GPS Pro

    上传时间: 2015-04-28

    上传用户:zhuoying119

  • 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

    上传时间: 2015-04-30

    上传用户:bjgaofei

  • The Art of Assembly Language Amazing! You’re actually reading this. That puts you into one of three

    The Art of Assembly Language Amazing! You’re actually reading this. That puts you into one of three categories: a student who is being forced to read this stuff for a class, someone who picked up this book by accident (probably because you have yet to be indoctrinated by the world at large), or one of the few who actually have an interest in learning assembly language.

    标签: Assembly Language actually Amazing

    上传时间: 2015-04-30

    上传用户:asddsd

  • 接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response A

    接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response As String Dim msg As New Pop3Message msg.bytes = rhs.bytes msg.number = rhs.number message = "RETR " + rhs.number.ToString + vbCrLf write(message) response = Respond() If response.Substring(0, 3) <> "+OK" Then Throw New Pop3Exception(response) End If MsgBox(msg) msg.retrieved = True While (1 = 1) response = Respond() If response = "." + vbCrLf Then Exit While Else msg.message += response End If End While Return msg End Function

    标签: Pop3Message Function Retrieve response

    上传时间: 2013-12-28

    上传用户:fnhhs

  • This program dump password hashes from local or remote Windows NT/2000 machines. It prints them on

    This program dump password hashes from local or remote Windows NT/2000 machines. It prints them onto the screen in l0phtcrack format, or will write them to a file if desired.

    标签: password machines program Windows

    上传时间: 2014-01-15

    上传用户:a673761058

  • This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simula

    This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simulator may be used to monitor and display any variable or peripheral I/O register. It is already configured to show the PWM output signal on PORT3.0 and PORT3.1 This ARM Example may be debugged using only the uVision Simulator and your PC--no additional hardware or evaluation boards are required. The Simulator provides cycle-accurate simulation of all on-chip peripherals of the ADuC7000 device series. You may create various input signals like digital pulses, sine waves, sawtooth waves, and square waves using signal functions which you write in C. Signal functions run in the background in the simulator within timing constraints you configure. In this example, several signal functions are defined in the included Startup_SIM.INI file.

    标签: the Analyzer Compiler project

    上传时间: 2013-12-19

    上传用户:Yukiseop

  • The program SPLAY is a pascal to C translation of a program that Kim Kokkonen wrote in Turbo Pasca

    The program SPLAY is a pascal to C translation of a program that Kim Kokkonen wrote in Turbo Pascal to implement Splay Trees. This program compresses and decompresses files, and does a pretty good job of it. Contents: SPLAY.PAS Original TP source code SPLAY.C Translation of code to C SPLAY.EXE Compiled version of SPLAY.C (small model) README.DOC You are looking at it Read the comments at the beginning of SPLAY.C for more info.

    标签: program translation Kokkonen pascal

    上传时间: 2015-05-05

    上传用户:rocwangdp

  • ABEL语言的编译器

    ABEL语言的编译器, 在DOS下使用。内有READ.TXT文件,使用前请看之。

    标签: ABEL 语言 编译器

    上传时间: 2015-05-13

    上传用户:bjgaofei

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    标签: available libraries Although nearly

    上传时间: 2014-01-22

    上传用户:zhoujunzhen