Core C++
tishian
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
单向链表、栈、队列
链表: #ifndef LINKEDLIST_H_ #define LINKEDLIST_H_ #include <stdexcept> using namespace std; template<typename T> class Node { public: T element; Node<T> *next; Node(...原创 2010-07-30 12:12:37 · 116 阅读 · 0 评论 -
File IO
头文件: #ifndef STUDENT_H_ #define STUDENT_H_ #include <string> using namespace std; class Student { public: Student(); Student(string, char, string, int); void setFirstName(str...原创 2010-07-30 12:15:59 · 146 阅读 · 0 评论
分享