-
csharp-lexical-analysis
c#词法分析器
实现简单的词法分析功能
(c# lexical analyzer to achieve simple lexical analysis functions)
- 2007-06-05 21:16:35下载
- 积分:1
-
基于F2812的维也纳VIENNA电源程序
基于F2812的维也纳VIENNA电源程序。本程序根据三电平六开关(Vienna)整流器的工作模态,结合两电平空间矢量(SVPWM)的工作原理,介绍了Vienna整流器SVPWM控制采用两电平SVPWM控制等效的方法。本文提出了一种适用于各种负载条件下的中点电位控制算法。
- 2022-01-25 18:23:10下载
- 积分:1
-
Audioandvideo
(visualc++音频视频处理技术及工程实践)书中的光盘内容((Visualc++ audio and video processing technology and engineering practice) the contents of the book' s CD-ROM)
- 2021-01-05 23:18:54下载
- 积分:1
-
webbrowser
vc++ SDK封装MSHTML.dll
最最底层实现IE,可以控制IE控件各种接口。
程序还实现C++和JS交互(vc++ SDK packages the underlying implementation of most MSHTML.dll IE, IE controls can control a variety of interfaces. Program also implements C++ and JS Interactive)
- 2011-05-07 18:25:03下载
- 积分:1
-
动态规划简介
动态规划知识讲解以及动态规划的题目,ACM上常见题型。(Dynamic programming knowledge and the topic of dynamic programming.)
- 2020-06-19 04:40:01下载
- 积分:1
-
实现KMP模式匹配,模式匹配操作对象是字符串
实现KMP模式匹配,模式匹配操作对象是字符串-achieve KMP, pattern-matching operations object is a string
- 2022-03-03 08:57:02下载
- 积分:1
-
KMP
#include
#include
#include
//朴素查找算法
//在主串str中查找子串sub
int BF(const char *str,const char *sub,int pos)//O(n*m)
{
int lenstr = strlen(str);
int lensub = strlen(sub);
if(poslenstr)
{
return -1;
}
int i = pos;
int j = 0;
while(i
- 2022-08-04 11:05:40下载
- 积分:1
-
牛头刨
说明: 这个仿真程序可以仿真牛头刨床的运动形式,解牛头刨床的运动加速度等。(This simulation program can simulate the form of the movement of the planer, the solution of the movement of the planer acceleration.)
- 2019-11-23 11:31:14下载
- 积分:1
-
ADI-FDTD_-_corrigido
adi-fdtd code in one dimensional whithout PML, with PEC ( Perfect Electric Condutor)
- 2021-01-04 17:08:55下载
- 积分:1
-
outlook小插件,实现读取多个pst到outlook
因为工作中涉及到将多个(大概有150个pst)文件导入到outlook里面,同是每个pst文件解压之后有很多小的子文件夹,手动合并的话太麻烦,这里也包含了将邮件分别合并到发件箱和收件箱,以及垃圾箱的功能,不过运行速度有点慢,还有待提高
- 2022-02-06 04:17:16下载
- 积分:1