搜索资源列表
juzhengchengfa
- 使用debug实现数组乘法并且十进制输出 使用独立的输出子程序,对于汇编学习者有一定参考作用-use debug achieve array decimal multiplication and the use of independent output Subroutine output for a certain compilation learners reference
msim
- matlab仿真模拟退火算法的简单搜索过程,随机数用数组实现-Matlab simulation annealing simple search process, with a few random arrays to achieve
DirectInsertSort
- 实现直接插入排序 要求:封装成一个函数,形式如下: void DirectInsertSort(bool bOrder, bool bPrintEveryStep, int * array) 其中,参数bOrder是布尔类型变量,true表示升序,false表示降序 bPrintEveryStep表示是否把每一步的排序结果打印出来,true表示打印,false表示不打印 array是待排序的数组 -direct insertion sorting
upload
- 汇编程序中的数制转换与DOS调用功能的结合,还有一个表处理程序,以下是程序实现的功能: 1.从键盘输入一个十进制数,转换为二进制显示在屏幕上; 2.输入十位BCD码,转换为4字节十六进制显示; 3.从键盘输入两个十进制数,相加后将结果显示在屏幕上; 4.从键盘键入一个4位十六进制数,转换为十进制显示在屏幕上; 5.对一个已知长度的从小到大的无符号字节数组查找关键字;用二分法实现
beijing
- 汇编语言向数组中插入一个元素的源程序,在DOS下实现
ASM_Sort
- 用汇编语言实现的:首先通过键盘输入一已知长度的字节数组,然后对该数组进行递增排序,并显示排序结果。最后再输入一数值,在该数组中进行查找。要求使用子程序结构。-Using assembly language to achieve: First of all, through the keyboard input of a known length of the byte array, and then increase the array to sort and display the resul
c2
- 1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/ float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向下一课程结点的指针*/ -1, there are n students, e
sort
- 用汇编语言实现的冒泡排序程序。先打印排序前table数组中数,之后排序后打印结果。-Assembly language using the Bubble Sort procedure to achieve. Print before the first table to sort the array in a few, and then print the results after sorting.
IBM-PC-programanswer
- 汇 编 语 言 实 验 实验一:分支程序设计 (1)试比较字数组array中的三个数,并根据比较结果在终端上显示如下信息: 如果三个数都不相等则显示0; 如果三个数有两个相等则显示1; 如果三个数都相等则显示2。 (2)试根据DL寄存器中哪一位为1(从低位到高位)把程序转移到8个不同的程序分支中去。(8个程序分支可设计成显示相应的数据) 实验二:循环程序设计 有一个首地址为array的10个字数组,用简单排序法使该数组中的数按照从小到大
xuhanshu
- 利用虚函数手段,按照3种不同的计算方法来求出Fibonacci数列的第n项(的具体项值)并输出。具体地说,可通过在基类baseCla及其派生类fib1Cla、fib2Cla和fib3Cla中说明如下的同一个虚函数“virtual double fib(int n) ”,来实现求Fibonacci数列第n项值并返回的3种不同求解方法。例如,可设计并使用已经在第4和第5章的练习中所实现的求解方法:简单变量“数据平移”法、使用数组的实现法以及使用递归函数的实现法。-The use of virtual
Visual_C_asm
- 汇编语言在Visual C++中应用的常用方法,介绍了嵌入式汇编方法的格式和模块调用方法的协议、约定及实现步骤,并结合课题介绍了通过数组借助指针实现C++与汇编语言的混合编程的一种新的方法。 -visual c++ use asm method
2011
- 设计并实现一个简单的银行储蓄系统,完成活期和定期用户的存款和取款业务。要求如下: 1. 实现描述银行的类,记录系统中现有哪些储户(提示:可用对象数组实现,但须注意判断数组越界的情况),该类中要求包含三个函数: (1) 生成新储户的函数; (2) 按照账户删除储户的函数(需判断该帐户是否还有余额) (3) 按照账户查询储户的函数,要求显示查询结果。 2. 定义储户类。其属性包含账号,存款人姓名、身份证号、地址、存款余额;其操作功能有存款、取款、显示储户信息。 3. 编写ma
paixu
- 自己写的8086实现数组的排序算法,采用冒泡法,并可将结果输出-Written in 8086 to achieve their own array of sorting algorithms, using the bubble method, and output the result
xunhuan
- 设有两个数组A和B,其数据均为20个。编程实现将两个数组中的数据各自按由小到大的顺序存放。之后,再将既在A数组中出现又在B数组中出现的整数按照由大到小的顺序存放于数组C中。 -The known two integer the variables A and B, try to write complete the following operating procedures: (1), if two number one is odd number, it will be an odd
Desktop
- 实现基于C语言的对于重要数组的排序的基本方法和技术-To achieve important array sorting methods and techniques based on C language
The-course-grade-points
- 用二维数组和指针变量作为函数参数,编程实现3个班学生的某们课程成绩的最高分,并指出具有最高分成绩的学生是第几个班的第几个学生-Two-dimensional array and pointer variables as function parameters, and programming to achieve the highest score of the three classes of students have the course grade, and pointed out th
CPP
- 通过数组的复制来实现回文数的判断,通过数组的复制来实现回文数的判断。-Array replication the palindrome judgment, the judgment of the palindrome array replication.
Microsoft-Word-
- 2、 下面的程序中,调用了findmax()函数,该函数寻找数组中的最大元素,将该元素的下标通过参数返回,并返回其地址值,编程实现findmax()函数。-2, the following program, called findmax () function, the function to find the largest element in the array parameter returns the subscr ipt of the element, and returns its
CSharp-list
- List<T>类是 ArrayList 类的泛型等效类。 该类使用大小可按需动态增加的数组实现 IList<T> 泛型接口。 -failed to translate
recursive
- 缓冲器设计 。采用数组实现一16字节的循环队列,编制程序:主程序从键盘输入一个个字符插入到队列,按 - 从队列取出一个显示出来。-The array to achieve a 16 byte circular queue, the program: the main program the keyboard input one character is inserted into the queue, according to the - the queue out a show.