Пример #1
0
void test0() {
    begin();
    SLL<int>* ddl = new SLL<int>();
    ddl->append(new Node<int>(1));
    int count = ddl->count();
    printf("[%d]", count);
    delete ddl;
}