-
resource allocation problem, workshops n, m machines, and the distribution can b...
资源分配问题,n个车间,m台设备,如何分配才能使获最大利益?-resource allocation problem, workshops n, m machines, and the distribution can be best interests
- 2022-02-02 20:50:29下载
- 积分:1
-
achieve a simple calculator functions, arithmetic, but also a number of other ma...
实现了一个简单的计算器的功能,可以加减乘除,还要其他一些数学运算,如乘方等.-achieve a simple calculator functions, arithmetic, but also a number of other mathematical calculations, such as involution.
- 2022-01-22 10:37:10下载
- 积分:1
-
Function of the document file can be opened using the windows user database
该文件函数 可得到打开的文件 利用windows
user 库-Function of the document file can be opened using the windows user database
- 2023-09-02 06:05:03下载
- 积分:1
-
VB窗体滚动条控件写的一个简单的应用实例附上…
VB窗体滚动条控件,简单写一应用实例附上源代码,从截图就可以看出,是不是有点个性?上侧的滚动条是不能拖动的,可以作为指示用,类似进度条的功能,拖动下边的滚动条,上边的会自动指示出滚动条拖动的大致位置,还有中间滚动、两侧滚动,使用方法比较多,慢慢研究吧。
-VB Forms scroll bar controls to write a simple application example to attach the source code, from the screenshot you can see, is not it a little personality? On the side of the scroll bar is not drag, and can be used as direct use, similar to the function of the progress bar, drag the bottom of the scroll bar, above the scroll bar will automatically indicate the general location of drag, as well as the middle of rolling on both sides of Scroll, using methods are more leisurely study bar.
- 2022-04-20 00:57:38下载
- 积分:1
-
51单片机红外解码程序,通过外部中断配合定时器实现对大部分遥控器进行解码,并显示代码及地址!...
51单片机红外解码程序,通过外部中断配合定时器实现对大部分遥控器进行解码,并显示代码及地址!-IR
- 2023-02-04 04:30:04下载
- 积分:1
-
按照鼠标键盘空闲时间关机,后台运行
按照鼠标键盘空闲时间关机,后台运行-close
- 2022-07-11 11:33:30下载
- 积分:1
-
ATL_DLL互发消息
【目的】:创建两 DLL,使两 DLL 能互发消息 【工具】:VS2005 【步骤简介】: 1、创建 MFC APPLICATI
- 2023-08-15 10:40:03下载
- 积分:1
-
10 cases developed.
10个delphi开发的案例。-10 cases developed.
- 2022-10-24 15:35:04下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1
-
svm training is a good way to fast, source code integrity, simple and understand...
smo是训练svm的一种快速的好方法,源代码完整,简单易懂.-svm training is a good way to fast, source code integrity, simple and understandable.
- 2022-03-02 20:43:24下载
- 积分:1