mirror of
https://gitee.com/apaki/unicstl.git
synced 2025-05-18 11:51:36 +08:00
16 lines
171 B
C
16 lines
171 B
C
#include "common.h"
|
|
#include "test.h"
|
|
|
|
int main()
|
|
{
|
|
while (1)
|
|
{
|
|
//stack_test();
|
|
//queue_test();
|
|
// list_test();
|
|
//tree_test();
|
|
rbtree_test();
|
|
}
|
|
return 0;
|
|
}
|