代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/192685/8363002
txt 如何判断某个文件是否已经打开.txt
你 可 以 用 下 面 这 个 函 数 来 检 查 一 个 文 件 是 否 被 打 开 。
Function IsOpen(sFile As String) As Boolean
Dim fFile As Integer
fFile = FreeFile()
On Error GoTo ErrOpen
Open sFile For
www.eeworm.com/read/192685/8363155
txt qb中cv?和mk?$两组函数对应的vb函数.txt
如 果 要 模 拟 这 些 函 数 , 可 以 使 用 下 面 的 代 码 :
Declare Sub CopyMemory Lib "KERNEL32" Alias "RtlMoveMemory" ( _
hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
Function MKI$ (x As
www.eeworm.com/read/192685/8363208
txt 如何获得任意磁盘的剩余空间.txt
2G以 下 的 硬 盘 可 以 使 用 API函 数 GetDiskFreeSpace。 下 面 就 是 一 个 例 子 。
Declare Function GetDiskFreeSpace Lib "kernel32" Alias _
"GetDiskFreeSpaceA" (ByVal lpRootPathName As String, _
lpSe
www.eeworm.com/read/192577/8374249
cpp kruska.cpp
#include
const int n=6; //定义网中顶点数
const int e=10; //定义网中边数
typedef struct edgeset //定义生成树
{
int fromvex; //边的起点
int endvex; //边
www.eeworm.com/read/292135/8376069
cpp test.cpp
#include
#include
#include //getch()
#include
#include
#include
const int MAXJOB=20; //定义最大作业数
typedef struct node
{
www.eeworm.com/read/389718/8506640
cpp eightnum.cpp
//用A*算法求解八数码问题
#include
using namespace std;
int count=0;
struct Card
{
int h; //用以记录节点的h值,启发函数h取“不在位的将牌数”
int g;
www.eeworm.com/read/287739/8673093
txt readme.txt
//BTreeNode.h
//B-树节点实现
//2006.6.20
//write by :宋瑞丰
//email:gordonbest@163.com
//////////////////////////////////////
初学者,见笑
//////////////////////////////////////
本程序支持不同阶数的b-树
BTreeNode.h和B