自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (22)
  • 收藏
  • 关注

原创 汇编语言(王爽) 课程设计1

<br />这边是要将实验7的公司的数据显示在dos窗口下,这边只给出代码<br />DATAS SEGMENT ;此处输入数据段代码 db '1975','1976','1977','1978','1979','1980','1981','1982','1983','1984','1985','1986','1987','1988','1989','1990','1991','1992','1993','1994','1995' ;以上是21年的21个字符串 d

2011-01-27 09:34:00 783

原创 可变存储分配和回收

<br />实验说明:<br />求采用某种分配算法(首次适应算法,循环首次适应算法,最佳适应算法,最差使用算法)实现可变存储算法的模拟操作,并实现回收空间的操作,这里要求使用链表的形式实现,建议采用最佳适应算法,首次适应算法<br />提示:这里可以使用两个链表,一个链表中存储已经分配的内存区,另一个链表中存储未分配的存储区,回收时采用模拟回收的方法,即输入一个内存区号,在已分配的链表中找到这个内存块,删除,并合并到另一个未分配的链表中,这里要考虑回收的各种情况,即单独的分区,可以和上面空闲区合并的分区,

2011-01-21 18:34:00 621

原创 王爽汇编语言 实验9

<br />在dos屏幕中输出 welcome to masm,welcome是绿色字体,to是绿底红字,masm是白底蓝字,代码示例:<br />DATAS SEGMENT db "welcome to masm" DATAS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS START: MOV AX,DATAS MOV DS,AX mov ax,0b800h mov es,ax m

2011-01-20 19:42:00 2152

原创 关于debug t1.exe出现的问题

<br />由汇编程序<br />assume cs:codesg codesg segment mov ax,2000H mov ss,ax mov sp,0H add sp,4H pop ax pop bx push ax push bx pop ax pop bx mov ax,4c00H

2011-01-11 00:44:00 969

原创 关于汇编栈问题

在《汇编语言学习笔记(4)》中出现的将数据2266H传入到10000中代码段mov ax,1000 mov ss,ax mov sp,2 mov ax,2266 push ax出现的问题,我的机子没办法实现数据的传送,或者说是出现了错误,这边的猜测是可能因为这边的栈的设置应该是:栈的容量的设置本身是要是一个最小段,或者是最小段的倍数,这边又进行了测试:mov ax,1000 mov ss,ax mov sp,0010 mov ax,2266 push ax这样,没有出现错误,数据2266H插

2011-01-10 11:19:00 1297 1

原创 汇编语言学习笔记(4)

pop,push 寄存器,段寄存器,内存单元内存段地址单元要放到段寄存器中,要间接地:<br /> mov ax,1234h mov ds,ax sub ax,ax 的机器码是两个字节,mov ax,0的机器码是三个字节,所以如果是要ax清零的话,可以使用sub ax,ax。要在10000出写入字型数据2266H,可以使用下面的代码:<br />mov ax,1000 mov ds,ax mov ax,2266 mov [0],ax<br />也可以使用下面的代码段完成:<br />mov ax,

2011-01-10 10:18:00 419

C语言Socket简单编程指南.rar

Socket 编程让你沮丧吗?从 man pages 中很难得到有用的信息吗?你想跟上时代去编 Internet 相关的程序,但是为你在调用 connect() 前的 bind() 的结构而不知所措? 等等… 好在我已经将这些事完成了,我将和所有人共享我的知识了。如果你了解 C 语言并想穿 过网络编程的沼泽,那么你来对地方了。

2017-10-24

C程序设计语言(第2版)(丹尼斯里奇经典).pdf

C语言程序设计的经典基础教程,这边是由丹尼斯里奇编撰。

2017-10-23

An Illustrated Introduction to Topology and Homotopy, Kalajdzievski, 2015.pdf

Chronology. In the year 2000 I was given two courses to teach: analysis and topology. The Analysis course was assigned to me due to an emergency redistribution; Topology was thrown in as an award for accepting to teach Analysis on such short notice. Algebraic topology, which covered only homotopy theory in its curriculum, was (re)introduced into the undergraduate-graduate program of the Mathematics Department (University of Manitoba) in 2004. I have taught these two courses almost continuously ever since. This book is primarily an upshot of my teaching lifestyle over these years. The level of the book, and the target audience. The book has two clearly differentiated parts: Part 1 is topology and Part 2 is homotopy. As indicated by the title of the book, we do not have any pretense to go very deeply into these subjects. On the other hand, neither could the content be described as too breezy, for we include most of the important theorems of the basic theory. The material covered in this book is on the fuzzy boundary between the undergraduate and the graduate level. One may tentatively state that Part 1 is mostly at the advanced undergraduate level, Part 2 is mostly at the early graduate level. Indeed, the Algebraic topology (Homotopy theory) course that I have been teaching has always been cross-listed, and has almost always been taken by both graduate and advanced undergraduate students. It is my hope that this book will bring this beautiful theory closer to the undergraduate curriculum.

2017-10-23

21st Century C.pdf

Throw out your old ideas of C and relearn a programming language that's substantially outgrown its origins. With 21st Century C, you'll discover up-to-date techniques that are absent from every other C text available. C isn't just the foundation of modern programmnglanguages; it is a modern language, ideal for writing efficient , state-of-the-art applications. Learn to dump old habits that made sense on mainframes and pick up the tools you need to use this evolved and aggressively simple language. No matter what programming language you currently champion, you'll agree that C rocks.

2017-10-23

magicCubeModel

3D魔方模型

2016-10-23

EJB design patterns

这是一本英文书籍,关于EJB的设计模式。

2010-11-24

整合php和xml电子书.chm

本书是英文版 Learn how to use SAX, XSLT, and XPath to manipulate XML documents, as well as use of XML-RPC protocol for accessing procedures on a remote computer, and much more. Table of Contents Introduction Copyright Chapter 1 - Introducing PHP and XML Chapter 2 - PHP and Simple Application Programming Interface for XML Chapter 3 - PHP and Document Object Model Chapter 4 - Understanding Extensible Stylesheet Language for Transformation Chapter 5 - PHP and XPath Chapter 6 - PHP and XML-Remote Procedure Calls Chapter 7 - PHP and Web Distributed Data Exchange Chapter 8 - Working with Databases using PHP and XML Chapter 9 - Creating an Online Shopping Cart Application Appendix A - XML and XSLT Functions Appendix B - Introducing eZXML Appendix C - The PHP.XPath Class Appendix D - XML-RPC for PHP Appendix E - Implementing SOAP using SOAPx4 Appendix F - PHPXML Classes Appendix G - PHP and Extensible Stylesheet Language for Transformation Index List of Figures List of Tables List of Listings

2010-11-24

C语言编程宝典之一.chm

内含c编程基础和提高篇,也有对应的C函数查询

2010-11-24

数据结构 (习题集和算法程序代码)

内有《清华数据结构习题集》和《算法与数据结构》两个chm文件,c语言的。

2010-11-24

JavaScript 实例

里面是关于JavaScript知识的一些实例,学习学习

2010-11-24

WiresharkEthereal中文教程BladeSpace

关于wireshark软件的教程,文档的形式是docbook

2010-11-24

JSP信息系统设计与开发实例

针对JSP进行毕业设计的学生,重点介绍了3个系统实例:项目申报系统,网络考试系统和公司人事管理系统

2010-11-24

jsp数据库编程指南

详细的介绍了JSP在大型数据库Oracle中的应用和开发

2010-11-24

Linux内核2·4版源代码分析大全

关于linux内核的源代码的详细的分析,一起学习

2010-11-23

微软经典丛书-软件研发

里面有微软的软件开发的团队的成功秘诀,项目求生法则,研发-制胜策略,office开发的代码模式和开发规范

2010-11-23

Linux 程序设计第三版源代码

里面含有linux程序设计的一些教程代码 可以自己看代码学习linux程序设计,是C语言

2010-11-23

标准建模语言UML教程

UML 即统一建模语言,是用来说明面向对象开发系统的产品、为系统建模、描述系统架构、描述商业架构和商业过程的标准建模语言。

2009-03-30

c++编程国际标准

里面有pdf文件,且是英文版的,2003年的。

2008-08-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除