schain.cpp
来自「data structures, algorithms and Applicat」· C++ 代码 · 共 26 行
CPP
26 行
// simulated chain
#include <iostream.h>
#include "schain.h"
SimSpace<int> SimChain<int>::S;
void main(void)
{
int x;
SimChain<int> c;
cout << "Chain length is " << c.Length() << endl;
c.Insert(0,2).Insert(1,6);
cout << "Chain length is " << c.Length() << endl;
c.Find(1,x);
cout <<"First element is " << x << endl;
c.Delete(1,x);
cout << "Deleted " << x << endl;
cout << "New length is " << c.Length() << endl;
cout << "Position of 2 is " << c.Search(2) << endl;
cout << "Position of 6 is " << c.Search(6) << endl;
c.Insert(0,9).Insert(1,8).Insert(2,7);
cout << "Current chain is " << c << endl;
cout << "Its length is " << c.Length() << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?