본문 바로가기

Python

스택 with Linked List

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