摘要:
#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",... 阅读全文
摘要:
C++ code 阅读全文
摘要:
C++ code 阅读全文
摘要:
C++ code 阅读全文
摘要:
C++ code 阅读全文
摘要:
C++ code 阅读全文
摘要:
#pragma once #include "stdafx.h" template class CLinkList { public: typedef struct LNode{ T data; struct LNode * next; }LNode;//单向链表 LNode * list;//头指针 CLinkList() ... 阅读全文
摘要:
C++ code 阅读全文
摘要:
1.新建模板类提示版本太低 Syntax error, type parameters are only available if source level is 1.5 当我的eclipse使用jdk1.6的时候,创建泛型类,系统会提示错误: “Set project compiler compl 阅读全文