Загрузить файлы в «/»
This commit is contained in:
commit
585da30561
3 changed files with 175 additions and 0 deletions
25
main.cpp
Normal file
25
main.cpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
#include "List.hpp"
|
||||
#include <typeinfo>
|
||||
|
||||
using namespace strs;
|
||||
|
||||
int main() {
|
||||
// dualList list;
|
||||
|
||||
unarList list = unarList::create();
|
||||
|
||||
std::cout<<list.get_size();
|
||||
// list(2);
|
||||
// list.append(120);
|
||||
// list[4].value = 89;
|
||||
// std::cout<< list[4].value <<std::endl;
|
||||
// list.remove();
|
||||
// list.pop();
|
||||
// list.~unar_link_List();
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue