-
大家经常需要对指定目录下的所有文件进行搜索或其它相同操作。若文件数很多,逐一对每个文件手工操作,很费时。这里提供一个搜索或处理指定目录下的所有文件的C++类。作...
大家经常需要对指定目录下的所有文件进行搜索或其它相同操作。若文件数很多,逐一对每个文件手工操作,很费时。这里提供一个搜索或处理指定目录下的所有文件的C++类。作者用基于层次遍历的非递归算法(以减少运行时的时间和空间开销)实现了一个 CFileFind 的扩展类 CFileFindExt,该类可以对指定目录下的所有文件进行搜索或相同的处理操作。-designated directories on the search for all documents or other similar operations. If the document number many, one by one for each document manually, a very time-consuming. Search here for a designated directory or processing of all documents under the C category. Based on the author traverse the level of non- recursive algorithm (to reduce the running time and space costs) achieved a CFileFind CFileFindExt the extension of the class, such right can be specified directory of all documents or search for the same handling operations.
- 2023-06-07 21:20:03下载
- 积分:1
-
一个简单功能的文件复制工具,通过API函数、THandleStream类和TFileStream三种方法复制文件!...
一个简单功能的文件复制工具,通过API函数、THandleStream类和TFileStream三种方法复制文件!-a tool have simple function about copy files,
there are three methods: APIfunction, THandleStream class and TFileStream.
- 2023-08-10 23:50:03下载
- 积分:1
-
SQL script will be in Japanese text into shftjis format.
将SQL脚本的里日本语文字转换成shftjis格式.-SQL script will be in Japanese text into shftjis format.
- 2023-05-22 04:50:03下载
- 积分:1
-
achieve WINDOWS tablet. Achieving a lot of functions. Extracting Password : www....
实现WINDOWS写字板。实现了很多功能。 解压密码:www.programsalon.com-achieve WINDOWS tablet. Achieving a lot of functions. Extracting Password : www.programsalon.com
- 2022-06-29 12:43:09下载
- 积分:1
-
通过读取CAPP系统产生的XML文件获取工艺信息
通过读取CAPP系统产生的XML文件获取工艺信息-CAPP system by reading the XML documents obtained Process Information
- 2023-08-25 09:05:09下载
- 积分:1
-
原始数据划分为train.dat和test.dat
应用背景开始是做movielense的数据,可以把原始数据任意划分为train.dat和test.dat,主要是为了做验证实验。非常简单明了,适合初学者看看,如果不喜欢,请轻喷。关键技术# -*- coding: cp936 -*-
from sklearn import cross_validation
c = []
filename = r"Raw.data" #原始数据
out_train = open(r"train.txt","w") #训练集
out_test = open(r"test.txt","w") #测试集
for line in open(filename):
items = line.strip().split(",")
c.append(items)
c_train,c_test = cross_validation.train_test_split(c,test_size=0.1)#size =你需要的比例
for i in c_train:
out_train.write(",".join(i)+"
")
for i in c_test:
out_test.write(",".join(i)+"
")
- 2022-01-25 21:21:56下载
- 积分:1
-
directory search path, then amend the content of the document, such as advertisi...
查找目录路径,然后修改文件的内容,如广告,文件路径等-directory search path, then amend the content of the document, such as advertising, paper trails, etc.
- 2022-03-30 16:18:24下载
- 积分:1
-
一个在C#下使用内存映射,能保存对象实例!强。dll源码及示例!...
一个在C#下使用内存映射,能保存对象实例!强。dll源码及示例!-C# 1 in the use of memory mapping, object can be preserved examples! Strong. Dll source code and examples!
- 2022-05-21 19:31:08下载
- 积分:1
-
用vb.net编写的源码,列出系统中的文件及显示此文件在系统中的图标(文件自身标的图标)。非常好的。...
用vb.net编写的源码,列出系统中的文件及显示此文件在系统中的图标(文件自身标的图标)。非常好的。-vb.net prepared with the source code, listing system and the documents show this file in the system"s icon (the subject of its own document icon). Very good.
- 2023-04-27 03:30:04下载
- 积分:1
-
把指定文件的“创建时间”“修改时间”修改成指定的值
把指定文件的“创建时间”“修改时间”修改成指定的值-designated documents "creation time", "modified" revise the value of the specified
- 2022-03-15 16:14:03下载
- 积分:1