📄 main.cpp.bak
字号:
#include"circularList.h"
#include<iostream>
using namespace std;
int main(){
circularList a;
cout << a.isEmpty() << endl;
// a.add(5);
// cout << a.isEmpty() << endl;
// cout << a.firstElement() << endl;
a.add(6);
cout << a.isEmpty() << endl;
// cout << a.firstElement() << endl;
// a.addlast(7);
// cout << a.firstElement() << endl;
// cout << a.includes(6) << endl;
// cout << a.includes(8) << endl;
// a.removeFirst();
// cout << a.firstElement() << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -