-
该程序完成在两个字符串中寻找最长公共子串,如果这样的字符串有多个,则将它们全部找出来,它在最坏情况下的复杂度为O(m*n)....
该程序完成在两个字符串中寻找最长公共子串,如果这样的字符串有多个,则将它们全部找出来,它在最坏情况下的复杂度为O(m*n).-the procedure is completed in two for the longest string of public substrings, if such a number of strings, will they all find out in the worst of the complexity of O (n* m).
- 2022-03-30 21:31:25下载
- 积分:1
-
数理统计的小软件,可以计算方差,列表列出输入的数字,界面简洁!...
数理统计的小软件,可以计算方差,列表列出输入的数字,界面简洁!-mathematical statistics of small software can calculate the variance, the importation of table lists the number of interface simplicity!
- 2022-09-09 05:10:03下载
- 积分:1
-
keyboard hook
键盘钩子原代码-keyboard hook-source
- 2022-11-13 22:00:04下载
- 积分:1
-
Data compression library Comprlib, windows application
数据压缩类库Comprlib,windows application-Data compression library Comprlib, windows application
- 2022-02-27 07:24:21下载
- 积分:1
-
scan line algo
我见过的最好的作品。请让我下载这个文件的内容,我真的需要它来了解项目的实施。就这样
- 2022-06-17 18:15:56下载
- 积分:1
-
DTU通信模块
DTU服务通信,建立DTU模块与服务器监听端口之间的链接,并进行通信,收发数据
- 2022-04-15 15:34:29下载
- 积分:1
-
摄像头视频捕捉程序
摄像头视频捕捉程序-camera video capture procedure
- 2022-04-29 00:37:50下载
- 积分:1
-
AnyDATA CDMA modem AT CMD
AnyDATA CDMA modem AT CMD-v31.rar
- 2022-05-26 18:55:36下载
- 积分:1
-
lua is pure Ansic scripting language, is the most compact and fastest running ki...
lua是纯Ansic的脚本语言,是最为小巧而运行速度最快的一种。作为魔兽世界的脚本语言而闻名-lua is pure Ansic scripting language, is the most compact and fastest running kind. EverQuest world as a scripting language, which is known
- 2022-05-18 11:36:25下载
- 积分:1
-
win开发用简易日志软件
简易日志显示软件。
支持显示日志、保存日志到文件、udp方式接收日志,支持显示日志网络来源。
本地调用:任何win软件使用如下函数,即可向该软件发送日志数据,日志软件会显示并保存到指定文件中。
int WriteLog(DWORD LogType, char* lpszFormat, ...)
{
static HWND m_hWndLog = NULL;
if (m_hWndLog == NULL)
{
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
char cCurPath[MAX_PATH];
if (GetCurrentDirectoryA(MAX_PATH, cCurPath) > 0)
{
char cExePath[MAX_PATH];
wsprintfA(cExePath, "%sstk1Log.exe", cCurPath);
WinExec(cExePath, SW_SHOW);
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
// AfxMessageBox("无法找到Stk1Log.exe用于显示日志!");
return -1;
}
}
}
}
else
{
if (IsWindow(m_hWndLog) == FALSE)
{
m_hWndLog = NULL;
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWnd
- 2022-07-25 17:36:54下载
- 积分:1