摘要: 1 #include <iostream> 2 3 using namespace std; 4 5 struct Node 6 { 7 struct Node *next; 8 int data; 9 }; 10 11 Node *createNode(int x) 12 { 13 Node *p 阅读全文
posted @ 2020-06-18 20:00 txwtech 阅读(254) 评论(1) 推荐(0) 编辑
摘要: 使用MFC如何在整个磁盘硬盘中查找文件? 在ANSI C中文件查找通过findfirst和findnext函数进行。在Win32中提供了专门的文件查找的函数, HANDLE FindFirstFile( LPCTSTR lpFileName, // file name LPWIN32_FIND_DA 阅读全文
posted @ 2020-06-18 19:38 txwtech 阅读(606) 评论(0) 推荐(0) 编辑