-
speed string processing functions of C language source code to achieve high
具有高速字符串处理功能的C语言源程序实现高速字符串处理-High-speed string processing functions of C language source code to achieve high-speed string processing
- 2022-03-02 17:10:39下载
- 积分:1
-
This program converts delphi source code files into HTML that looks as in Delphi...
This program converts delphi source code files into HTML that looks as in Delphi editor, with syntax coloring.
- 2022-08-16 15:34:32下载
- 积分:1
-
Oriented Design Patterns In Csharp 2005
Oriented Design Patterns In Csharp 2005
- 2023-01-02 01:55:04下载
- 积分:1
-
IOTA滤波器函数
从抗ISI和ICI的角度来看,总是希望能量集中在时频格点附近,而扩散到其他格点的能量越小越好,常用的滤波器函数有EGF函数、IOTA函数和高斯等,本程序是关于IOTA滤波器函数。
- 2022-08-19 06:01:17下载
- 积分:1
-
For people who likes switching systems
For people who likes switching systems
- 2022-04-22 23:56:34下载
- 积分:1
-
MASM6.11环境,需要的可以下载,绝对可用
MASM6.11环境,需要的可以下载,绝对可用-MASM6.11 environment, the needs can be downloaded, absolutely usable
- 2022-07-14 16:32:58下载
- 积分:1
-
ID protector
这是一个id保护器,使用1个插座自动重新连接。
- 2022-07-12 19:31:08下载
- 积分: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
-
纹理分割是基于纹理的区域识别。哟…
Texture segmentation is the identification of regions based on their texture. Your goal is to segment two kinds of fabric in an image using texture filters.
- 2022-08-09 16:59:20下载
- 积分:1
-
网络安全与身份认证
网络安全与身份认证-network security and identity authentication
- 2023-02-07 10:20:03下载
- 积分:1