代码搜索结果
找到约 10,000 项符合
Q 的代码
q.txt
void CQueryDlg::TryWhois(CString host)
{
CInternetSession session;
m_out += "正在链接Whois地址 " + host + "\r\n";
UpdateData(FALSE);
CGopherConnection* connection = NULL;
try
{
connection =
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
%---
% Q distribution
%
%---
EbNodB = [-2:0.01:10];
EbNo = 10 .^(EbNodB/10);
BER = 0.5*erfc(sqrt(EbNo));
semilogy(EbNodB, BER);
grid
xlabel('Eb/No (dB)')
ylabel('Bit Error Rate')
a
q.htm
Q
Functions - Q
[index]
q.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "q"=".\q.dsp" - Pack
q.dsp
# Microsoft Developer Studio Project File - Name="q" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console
q.cpp
#include
#include
#include "stdafx.h"
//—————赫夫曼树和赫夫曼编码的存储表示—————
typedef char *HuffmanCode; //动态分配数组存储赫夫曼编码表
class HTNode
{ public:
double weight;
int pare