摘要:
任务4 task4.cpp 1 #include <iostream> 2 #include "Vector.hpp" 3 4 void test1() { 5 using namespace std; 6 7 int n; 8 cout << "Enter n: "; 9 cin >> n; 10 阅读全文
摘要:
1 //[问题描述] 每个员工的信息包括:编号、姓名、性别、出生年月、学历、职务、电话、住址等。 2 //系统能够完成员工信息的查询、更新、插入、删除、排序等功能。 3 //[基本要求] (1) ok排序:按不同关键字,对所有员工的信息进行排序。(2) ok查询:按特定条件查找员工。 4 //(3) 阅读全文
摘要:
1 //二叉树的建立与遍历 2 //[问题描述] 建立一棵二叉树,并对其进行遍历(先序、中序、后序),打印输出遍历结果。 3 //[基本要求] 从键盘接受输入(先序),以二叉链表作为存储结构,建立二叉树(以先序来建立) 4 //,并采用递归算法对其进行遍历(先序、中序、后序),将遍历结果打印输出。 阅读全文
摘要:
1 //设置一个栈,每读入一个括号,若是左括号,则作为一个新的更急迫的期待压入栈中; 2 //若是右括号,并且与当前栈顶的左括号相匹配,则将当前栈顶的左括号退出,继续读下一个括号, 3 //如果读入的右括号与当前栈顶的左括号不匹配,则属于不合法的情况。 4 //在初始和结束时,栈应该是空的。 5 6 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 #define Max_size 100 5 6 void selectSort(int *arr,int n) //简单选择排序 7 { 8 int i,j,k,tem 阅读全文
摘要:
任务1 task1.cpp 1 #include "publisher.hpp" 2 #include <vector> 3 #include <typeinfo> 4 5 using std::vector; 6 7 void test() { 8 vector<Publisher *> v; 9 阅读全文
摘要:
任务1 task1_1.cpp 1 #include <iostream> 2 3 using std::cout; 4 using std::endl; 5 6 // 类A的定义 7 class A { 8 public: 9 A(int x0, int y0); 10 void display( 阅读全文
摘要:
实验.cpp 1 //编写程序,实现顺序栈的基本运算:初始化ok、入栈ok、出栈ok; 2 //应用顺序栈实现数制转换:把任意非负十进制正整数转换为n(n可以为2、8、16等等)进制数输出ok,给出至少5组测试数据及结果。; 3 //应用顺序栈,编程实现表达式(只包含 + 、 - 、 * 、 / 四 阅读全文
摘要:
任务1 task1.cpp 1 #include "window.hpp" 2 #include <iostream> 3 4 using std::cout; 5 using std::cin; 6 7 void test() { 8 Window w1("new window"); 9 w1.a 阅读全文
摘要:
任务1 task1.cpp 1 #include "t.h" 2 #include <iostream> 3 4 using std::cout; 5 using std::endl; 6 7 void test(); 8 9 int main() { 10 test(); 11 cout << " 阅读全文