摘要: #include "LinkList.h" #include "MultiArr.h" #include "procs.h" #include "str.h" #include "stdio.h" void main() {while(1){ int i , j; int index; printf("请输入需要访问的文件夹号:\n"); scanf("%d",... 阅读全文
posted @ 2017-09-28 15:16 TQCAI 阅读(295) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:15 TQCAI 阅读(163) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:14 TQCAI 阅读(186) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:13 TQCAI 阅读(181) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:12 TQCAI 阅读(429) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:10 TQCAI 阅读(188) 评论(0) 推荐(0)
摘要: #pragma once #include "stdafx.h" template class CLinkList { public: typedef struct LNode{ T data; struct LNode * next; }LNode;//单向链表 LNode * list;//头指针 CLinkList() ... 阅读全文
posted @ 2017-09-28 15:09 TQCAI 阅读(218) 评论(0) 推荐(0)
摘要: C++ code 阅读全文
posted @ 2017-09-28 15:07 TQCAI 阅读(276) 评论(0) 推荐(0)
摘要: 1.新建模板类提示版本太低 Syntax error, type parameters are only available if source level is 1.5 当我的eclipse使用jdk1.6的时候,创建泛型类,系统会提示错误: “Set project compiler compl 阅读全文
posted @ 2017-09-28 15:01 TQCAI 阅读(192) 评论(0) 推荐(0)