-
DTMF的探测器和发电机的C++类
dtmf-cppC + + DTMF 探测器和发电机类原始代码由普利亚什克维奇 Viatcheslav plyashkevich@yandex.ru 写的和可用以其原始的形式,在 http://sourceforge.net/projects/dtmf/Main 的特点: 便携式定点 implementationDetection DTMF 音调,从 8 KHz PCM8 signalInstallationgit 克隆 https://github.com/mpenkov/dtmf-cpp.git cd dtmf cpp 使 bin/检测-au.out 测试-数据/Dtmf0.au
- 2022-01-25 23:12:54下载
- 积分:1
-
VANET: 车辆的应用和相互联网技术
VANET: 车辆的应用和相互联网 TechnologiesContents前言 xv关于编辑 xix前言 xxi确认 xxv派遣 xxvii 列表1 引言 1Hannes Hartenstein 和 Kenneth P Laberteaux1.1 启发和挑战.......1要价 1.2 过去 andOngoingVANETActivities41.2.1 从开始到 20 世纪 90 年代中期王子.51.2.2 从 90 年代中期到目前溃71.2.3 例子当前项目结果溃101.3 ChapterOutlines 管线14References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .172 合作车辆安全应用 21德里克 · 卡夫2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .212.1.1 Motivation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .212.1.2 Chapteroutline 盖印章222.2 EnablingTechnologies 盖印章232.2.1 Communicationrequirements 献计232.2.2 Vehicularpositioning 工作232.2.3 Vehiclesensors 盖印章252.2.4 在-boardcomputationplatforms...262.3 CooperativeSystemArchitecture......262.4 Mappingfor SafetyApplications......282
- 2022-01-21 22:26:08下载
- 积分:1
-
布谷鸟搜索算法
%% Set problem parameters% select your cost function:costFunction = "rastrigin"; % F6 +/-5.12npar = 100; % number of optimization variablesvarLo = -5; % Lower band of parametervarHi = 5; % Higher band of parameter%% Set COA parameters
- 2022-09-10 19:05:03下载
- 积分:1
-
wu-manber算法c语言实现
wu-manber算法c语言实现,多模匹配算法,高效快速。
- 2022-06-13 07:35:29下载
- 积分:1
-
linux下的嗅探程序
基于linux下的一个网络嗅探器,可以抓取网络上的数据包~
环境:VMware Workstation 6.0,RED Hat 9.0,vi 编辑器或gedit 文本编辑器,gcc 编译环境,局
域网环境。
部分代码:
...
//设置原始套接字方式为接收所有的数据包
if((sock=socket(PF_PACKET, SOCK_RAW, htons(ETH_P_IP)))
- 2022-06-03 18:44:57下载
- 积分:1
-
zigbee 协议栈
zstack 协议栈源码 ,基于IEEE 802.15.4 标准由TI(德州仪器)公司开发的一套组网系统
- 2022-09-10 01:15:02下载
- 积分:1
-
hash算法实现及测试源码
1. 使用gcc编译器编译 test.c
gcc test.c -o test
运行./test进行测试
2. 当你自己编程时 ,请参考 test.c
a) 包含头文件 #include "hash.h"
b) 补充 hashKey 和 比较函数
3. 你可以在hash queue中放置任何数据
- 2022-02-13 18:42:28下载
- 积分:1
-
ASN.1 编译器
ASN.1 编译器的目的是要转换成 ASN.1 表示法中的规范
一些其他语言。在这时刻,只有 C 和 c + + 的目标语言支持,
后者是在向上兼容性模式。
编译器读取,规范并发出一系列的目标语言结构 (C
结构、 工会、 枚举) 描述相应的 ASN.1 类型。编译器还会创建
它允许自动序列化和反序列化使用这些结构的代码
几个标准化编码规则 (BER、 范、 定影剂、 %)。
- 2022-03-22 02:44:16下载
- 积分:1
-
简单服务器端程序
a.备份系统日志文件,产生一个备份文件,备份文件名以日期时间作为后缀,比如wtmpx20101102102745.bak b.读取上次匹配剩余的登入记录数据。 c.读取备份文件,产生用户登入/登出记录(登录名,登录IP,登录类型,登录时刻,进程ID,登录IP长度)。 d.把登入/登出记录进行匹配成一条登录记录(登录名,登录IP,登入时刻,登出时刻,登录时长) e.保存匹配剩余的登入记录数据 f.根据服务器IP与端口连接服务器,产生连接 g.把登录记录发送到服务器。
- 2022-03-24 09:08:25下载
- 积分:1
-
Linux下的聊天室
应用背景
This is the server and client code in C for a simple chat program for multiple client communication.
This repository contains code for a very simple chat program implemented on the linux system, using base system libraries and the C programming language. The program consists of two major components, the first being the server program and the second is the Client program.
关键技术
The server program maintains a list of clients and also a queue of client messages. It uses semaphores to make sure synchronisation errors do not occur.
The server program accepts one optional input argument – listen_port_number. If this argument is missed, the server will use the default port number 3500 (defined in the provided header file chat_server.h). Once it starts, it runs forever. To ter
- 2023-07-14 01:50:03下载
- 积分:1