-
Windows环境下32位汇编语言程序设计配套书源码第10章
Windows环境下32位汇编语言程序设计配套书源码第10章-Windows Environment 32-bit assembly language programming book source package Chapter 10
- 2023-01-24 03:15:03下载
- 积分:1
-
264 software source file ,made in C language
264 software source file ,made in C language
- 2023-08-25 10:55:04下载
- 积分:1
-
电子钟,数码管显示,可以调整。程序十分简单,思路清晰。...
电子钟,数码管显示,可以调整。程序十分简单,思路清晰。-Electronic clock, digital display, you can adjust. Procedure is very simple, clear ideas.
- 2022-01-25 19:28:45下载
- 积分:1
-
提供了键盘的扫描码目录,可以通过查询实现相关热键的拦截。...
提供了键盘的扫描码目录,可以通过查询实现相关热键的拦截。-Provides a keyboard scan code directory, can be achieved by querying the relevant hotkey to intercept.
- 2022-07-16 01:37:01下载
- 积分:1
-
无线电源控制系统发射程序.T1为方式2(8位).设置串口方式1,允许接收.设置波特率:2400bit/s(晶振12MHz),调看门狗喂狗子程序....
无线电源控制系统发射程序.T1为方式2(8位).设置串口方式1,允许接收.设置波特率:2400bit/s(晶振12MHz),调看门狗喂狗子程序.-Wireless power control system of the launch procedures. T1 for Mode 2 (8). Set serial mode 1, the receiving permit. Set baud rate: 2400bit/s (crystal 12MHz), transferred喂狗watchdog subroutine.
- 2023-07-29 12:45:03下载
- 积分:1
-
This code may be reused for any educational or non
This code may be reused for any educational or non-commercial application without further licence Contact the author at BrianLBurns@att.net for any other use.
- 2022-03-18 08:58:41下载
- 积分:1
-
水波效果公用子程序。
水波效果公用子程序。-wave effect common subroutine.
- 2022-07-05 14:24:43下载
- 积分:1
-
This is the C language code and data structures to V source code Exercises
这是C语言代码,数据结构地五章习题源代码-This is the C language code and data structures to V source code Exercises
- 2022-01-26 04:03:02下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1
-
汇编程序实现:
程序功能:用深度优先搜索法解决八皇后问题并打印结果.
列数行数分别用1...
汇编程序实现:
程序功能:用深度优先搜索法解决八皇后问题并打印结果.
列数行数分别用1-8标记.所以八皇后的位置申请了9个
调试感慨:汇编调试实在麻烦,不像C中在任何地方加个printf就可以知道
哪错了.跳来跳去的,不知哪里死循环了,实在不好调试.
-Assembler to achieve: program features: Using depth-first search method to solve the eight queens problem and print the results. Out a few lines with 1-8 marks, respectively. Therefore, the position applied for 8 Queens 9 debugging feeling: it is troublesome to debug compilation , unlike C, plus a printf in any place can be known what is wrong. jumping around, and I do not know where the infinite loop, and it is not good debugging.
- 2022-07-23 13:48:34下载
- 积分:1