发布时间:2012-12-11 12:00:40
点击(此处)折叠或打开#include <iostream>using namespace std;struct Node{ int data; Node * next;};class NodeList{private: Node * headnode;public: NodeList(){headnode = 0;} ~NodeList(); ......【阅读全文】
zuopeng0002012-11-08 10:53
你好,我想用python写一个小程序:
如:这边在本地下载一个h3c交换机的配置文件,现在我想把这个配置文件导入其他
同类型号的交换机上。就是用python实现批量配置设备的程序。