?? linklisttest.cpp
字號:
// LinkListTest.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <string.h>
#include <iostream.h>
#include "LinkList.h"
int main(void)
{
LinkList_T l;
#if 0
l.init();
#endif
#if 1
l.prepend("1");
l.prepend("2");
l.prepend("3");
#endif
#if 1
l.append("4");
l.append("5");
#endif
for(int i=0; i<5; i++)
{
cout<<i<<" is "<<l.contents(i)<<endl;
}
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -