-
利用DLL编写导出类,是一个通俗易懂的例子哦,拿回去看看吧
利用DLL编写导出类,是一个通俗易懂的例子哦,拿回去看看吧-derived type is a user-friendly examples Oh, look at the federal Look here
- 2022-09-22 15:45:03下载
- 积分:1
-
Web 产品
此源是与 html 的模板和 css 源代码。这可用于 web 设计来创建自定义的软件......
- 2022-04-01 17:09:37下载
- 积分:1
-
使用comm控件进行串口编程
使用comm控件进行串口编程-controls for the use of comm Serial Programming
- 2022-02-14 12:25:44下载
- 积分:1
-
Apriori; FP-Growth; BPSO-HD; ARMGA; FI-GF; CLT
我在GitHub上上传的一些关联规则/频繁模式挖掘的代码。
具体使用方法,可参考我的GitHub主页http://github.com/DMDarkness/Data-mining,上面也有下载
Apriori and FP-growth: 这两个算法很常用,不介绍了
BOSO-HD:一个基于二元粒子群算法的频繁模式挖掘算法,论文https://link.springer.com/article/10.1007/s11771-016-3224-8
ARMGA:一个基于遗传算法的关联规则挖掘算法,论文http://www.sciencedirect.com/science/article/pii/S0957417408000195
FI-GF:一个基于粒计算与模糊理论的频繁模式挖掘算法,论文http://downloads.hindawi.com/journals/mpe/2015/623240.pdf
CLT:一个基于中心极限定理的频繁模式算法,论文https://link.springer
- 2023-01-02 20:15:03下载
- 积分:1
-
A example about memory pool,use VC language.
好像是关于内存池的一个例子,具体就忘了,下完看一下吧!-A example about memory pool,use VC language.
- 2023-06-06 18:50:03下载
- 积分:1
-
There is a infinite series, whose general term is expressed as: a [n] = 10* 10*....
有一个无穷数列,其通项表示为:
a[n]=10*10*... n=0,1,2,3.....
构成了1,10,100,1000...
把它连起来,就成了数串。
判断数串的第i位到底是0还是1.性能要求1s
-There is a infinite series, whose general term is expressed as: a [n] = 10* 10*... n = 0,1,2,3 ..... constitute 1,10100,1000 it even ... together, it becomes the number of strings. Determine the number of strings in the end of the first i-bit is 0 or 1. Performance requirements 1s
- 2022-03-22 03:32:03下载
- 积分:1
-
Exe file name in accordance with the corresponding return to the process ID, the...
根据exe文件名返回进程对应的ID,主要利用CreateToolhelp32Snapshot,完美版,支持哦UNICODE-Exe file name in accordance with the corresponding return to the process ID, the main use of CreateToolhelp32Snapshot, perfect version, support for UNICODE Oh
- 2022-06-16 03:00:43下载
- 积分:1
-
read ie query string
read ie query string
- 2022-03-31 01:35:22下载
- 积分:1
-
windows2008基本安全配置批处理
windows2008本地安全策略设置,服务的禁用与启用,windows2008系统自动登陆,改运程桌面的商品号。
- 2022-06-21 23:11:51下载
- 积分: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