本章我们只介绍除UserDict/UserList/UserString以外的方法,至于这三个方法,我们用于继承他们,而实现你想要的结构。namedtuple:用于创建具有命名字段的tuple子类的工厂函数...
单向链表:class error(Exception): def __init__(self,msg): super(error,self).__init__() self.msg=msg def __str__(self): return self.m...
1 #include<stdio.h> 2 #include<malloc.h> 3 #include<stdlib.h> 4 5 //函数声明 6 PNODE create_list();//返回值是链表头结点的地址 7 void traverse_list(PNODE pHead); ......
#include<stdio.h>#include<malloc.h>#include<stdlib.h>//函数声明PNODE create_list();//创建链表,返回值是链表头结点的地址void traverse_list(PNODE pHead);//遍历链表bool is_empty(PNO......