代码搜索:互相关
找到约 10,000 项符合「互相关」的源代码
代码结果 10,000
www.eeworm.com/read/269229/11104810
h graph2.h
//利用普里姆算法求出用邻接
//矩阵表示的图的最小生成树
//图的相关数据类型的定义graph2.h
//最多顶点数
const int MaxV=10;
//最大权值
const int MaxValue=99;
//定义边集数组中的元素类型
struct RCW
{int row,col;
int weight;
};
//类定义
class adjMList
www.eeworm.com/read/269229/11104818
cpp graph.cpp
//图的相关运算的实现graph.cpp
#include"graph.h"
//构造函数,初始化图的邻接矩阵
AdjMatrix::AdjMatrix(int n,int k2)
{int i,j;
if(k2==0){//初始化无(有)向无权图
for(i=0;i
www.eeworm.com/read/269229/11104834
h graph0.h
//图的相关数据类型的定义graph0.h
//最多顶点数
const int MaxV=10;
//最大权值
const int MaxValue=99;
//定义邻接表中的边结点类型
struct edgenode {
int adjvex; //邻接点域
int weight; //权值域
edgenode* next;//指向下一个边结点的链域
};
s
www.eeworm.com/read/269229/11104836
h graph3.h
//利用克鲁斯卡尔方法求边集数组所示图的最小生成树
//图的相关数据类型的定义graph3.h
//最多顶点数
const int MaxV=10;
//最大权值
const int MaxValue=99;
//定义邻接表中的边结点类型
struct edgenode {
int adjvex; //邻接点域
int weight; //权值域
e
www.eeworm.com/read/269229/11104847
cpp graphm.cpp
//图的相关运算的测试graphM.cpp
#include
#include
#include
#include "graph.cpp"
void main()
{cout
www.eeworm.com/read/266126/11238969
cpp main7-4.cpp
// main7-4.cpp 检验bo7-4.cpp的主程序
#include"c1.h"
#define MAX_NAME 3 // 顶点字符串的最大长度+1
#define MAX_INFO 80 // 相关信息字符串的最大长度+1
typedef char InfoType;
typedef char VertexType[MAX_NAME]; // 字符串类型
#
www.eeworm.com/read/266126/11239020
cpp algo7-6.cpp
// algo7-6.cpp 实现算法7.15的程序。迪杰斯特拉算法的实现
#include"c1.h"
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char InfoType;
typedef char Verte
www.eeworm.com/read/249868/12465301
m 10-10.m
wname = 'db5';
%设置小波名
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(wname);
% 计算与给定小波名相关的四个滤波器
subplot(221); stem(Lo_D);
title('分解低通滤波器');
subplot(222); stem(Hi_D);
title('分解高通滤波器');
subplot(223); ste
www.eeworm.com/read/148122/12490693
txt 2ccc.com.txt
DELPHI盒子 二零零三新版
http://www.2ccc.com
http://www.delphibox.com
Email:root@2ccc.com
DELPHI相关源码下载,作品发布,个性论坛,支持WEB/FTP文件上传,会员WEB空间,VIP会员XXX@2ccc.com邮箱。
2ccc技术论坛
http://bbs.2ccc.com
2003-9-
www.eeworm.com/read/335656/12509795
sh oramiss.sh
#!/bin/sh
# 数据库创建脚本
#
# 完成创建用户vasmp_omc、bill
# 并创建用户的相关数据
#
# 请根据当前数据库DBA的用户、口令,修改:ORACLE_LOGIN
#
#请根据实际情况修改
ORACLE_LOGIN="system/sysdba"
MISS_ORACLE_LOGIN="MISS/MISS"
#删除以前已经有的对象
sqlplus $ORA