1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | #-*-coding:utf-8-*- class Node: def __init__(self,data): self.data=data self.next=None def init_node(data): node1=Node(data) tmp_ptr=node1 return tmp_ptr def print_node(str_ptr): tmp_ptr=str_ptr # os.system("cls") print "\n\n\n" while 1: print tmp_ptr.data if tmp_ptr.next == None: break tmp_ptr=tmp_ptr.next print "Finish.." def insert_node(str_ptr,data): tmp_node=Node(data) tmp_node.next=str_ptr str_ptr=tmp_node return str_ptr def remove_node(str_ptr): str_ptr=str_ptr.next return str_ptr if __name__ == "__main__": # 최초 포인터 생성 str_ptr=init_node(1) print_node(str_ptr) str_ptr=insert_node(str_ptr,2) str_ptr=insert_node(str_ptr,3) str_ptr=insert_node(str_ptr,4) str_ptr=insert_node(str_ptr,5) print_node(str_ptr) str_ptr=remove_node(str_ptr) print_node(str_ptr) | cs |
'Python' 카테고리의 다른 글
클래스 다중상속 및 @classmethod (0) | 2015.10.14 |
---|---|
특정 프로세스의 패킷만 캡쳐하기 (0) | 2015.09.17 |
게임서버 최종 소스 (0) | 2015.05.08 |
쓰레드를 이용한 다중 클라이언트 소켓 (0) | 2015.05.05 |
(Fail) 쓰레드를 이용한 소켓 (0) | 2015.05.04 |