代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/242302/13077679
txt 如何对access的.mdb数据库进行加密.txt
你 可 以 使 用 CompactDatabase来 对 数 据 库 进 行 加 密 , 如 :
DBEngine.CompactDatabase "Nwind.mdb", _
"Nwind.mdb", , dbEncrypt, , ";pwd=askpro"
加 密 之 后 , 打 开 文 件 的 办 法 有 所 不 同 , 在“如何打开有密码ACCESS数
www.eeworm.com/read/242302/13078412
txt 如何向文本文件中添加文本.txt
用 下 面 的 方 法 打 开 文 件 :
Open "d:\text2.txt" For Append As #1
Append表 示 追 加 内 容 。 你 可 以 看 看 VB帮 助 中 有 关 的 说 明 。 输 出 就 使 用 Print #语 句 就 可 以 。
www.eeworm.com/read/242302/13078913
txt 在crystal reports中如何加入vb中变量.txt
你 的 VB语 句 有 问 题 。 Formulas属 性 的 语 法 应 该 是 :
[form.]Report.Formulas(ArrayIndex)[= "FormulaName= FormulaText"]
假 如 你 在 Crystal Reports加 入 的 公 式 叫 MyTime, 你 可 以 使 用 这 样 的 语 句 :
Report1.
www.eeworm.com/read/242302/13081348
txt 如何打印true dbgrid6.0a里面的数据.txt
True Dbgrid的 PrintInfo可 以 用 来 打 印 数 据 。 具 体 格 式 是
TDBGrid1.PrintInfo.PrintData
也 可 以 使 用 TDBGrid1.PrintInfo.PrintPreview进 行 预 览 。 PrintInfo还 有 许 多 有 用 的 方 法 和 属 性 。
www.eeworm.com/read/242043/13097678
cpp heapsort.cpp
void HeapSort (elemtype x[], int n)
/*用堆排序法对记录x[0]--x[n-1]排序*/
{
int i;
elemtype Temp;
/*初始建堆*/
for(i=(n-2/2);i>=0;i--)
CreatHeap(x,n,i);
/*输出堆顶元素后调整堆*/
for(i=n-1;
www.eeworm.com/read/326765/13118695
m ifft_papr.m
%***************************************************
% 用IFFT法计算OFDM符号PARP, 采用BPSK调制
% N 载波数 符号数为2^N
% M 过采样因子 可选2^n,IFFT后每符号实际输出N*M个样点
% pt 时域信号的包络功率
% papr 每符号内峰均功率比
%-----------------------
www.eeworm.com/read/240259/13228287
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli
www.eeworm.com/read/240259/13228332
cpp xuanze2.cpp
//选择排序法(下沉)xuanze2.cpp
#include
#include
#include
#include
#define N 10
void gensort(int b[],int n)
{int i,j,k;
for(i=1;i
www.eeworm.com/read/240259/13228511
cpp xuanze5.cpp
//选择排序法xuanze5.cpp
//排序后不改变原数组各元素的值
#include
#include
#include
#include
#define M 10
void sortp(int d[],int *pd[],int b[],int size)
{int i,j,k;
for(i
www.eeworm.com/read/240259/13228567
cpp maopao3.cpp
//冒泡排序法(下沉)maopao3.cpp
#include
#include
#include
#include
#define N 10
void gensort(int b[],int n)
{int i,j;
for(i=1;i