[알고리즘] 단순 연결 리스트를 이용한 스택(stack)

/*

연결 리스트, 링크드 리스트(linked list)는 각 노드가 데이터와 포인터를 가지고 한 줄로 연결되어 있는 방식으로 

데이터를 저장하는 자료 구조이다. 

이름에서 말하듯이 데이터를 담고 있는 노드들이 연결되어 있는데, 

노드의 포인터가 다음이나 이전의 노드와의 연결을 담당하게 된다. 

연결 리스트의 종류로는 단순 연결 리스트, 이중 연결 리스트 등이 있다. 

*/

// 단순 연결 리스트를 이용한 스택의 구현

 

class Node {

    public $key;

    public $next = Node;

 

$head = new Node;

$tail = new Node;

 

function init_stack() {

    Global $head, $tail;

 

    $head->next = $tail;

    $tail->next = $tail;

}

 

function clear_stack() {

    Global $head, $tail;

    $t = Node;

    $s = Node;

 

    $t = $head->next;

    while ($t != $tail) {

        $s = $t;

        $t = $t->next;

        $s = null;

    }

    $head->next = $tail;

}

 

function push($k) {

    Global $head, $tail;

    $t = new Node;

   

    if ($t == NULL) {

        println("   Out of memory...");        

    }

  

    $t->key = $k;

    $t->next = $head->next;

    $head->next = $t;

}

 

function pop() {

    Global $head, $tail;

    $t = new Node;

 

    if ($head->next == $tail)  /* if empty */ {

        println("  Stack underflow.");

        return -1;

    }

    $t = $head->next;

    $i = $t->key;

    $head->next = $t->next;

    $t = null;

    

    return $i;

}

 

function print_stack() {

    Global $head, $tail;

    $t = new Node;

 

    $t = $head->next;

    println("  Stack contents : Top ----> Bottom");

    while ($t != $tail) {

        println($t->key);

        $t = $t->next;

    }

}

 

init_stack();

 

println('Push 1, 2, 3');

push(1);

push(2);

push(3);

print_stack();

 

$i = pop();

println('Pop '.$i);

print_stack();

 

println('Push 4, 5, 6');

push(4);

push(5);

push(6);

print_stack();

 

println('Initialize stack');

clear_stack();

print_stack();

 

println('Now stack is empty,');

println('Pop');

$i = pop();

print_stack();

 

function println($str=''){

    echo $str.'<br />';

 

/* output

Push 1, 2, 3

Stack contents : Top ----> Bottom
3
2
1
Pop 3
Stack contents : Top ----> Bottom
2
1
Push 4, 5, 6
Stack contents : Top ----> Bottom
6
5
4
2
1
Initialize stack
Stack contents : Top ----> Bottom
Now stack is empty,
Pop
Stack underflow.

Stack contents : Top ----> Bottom 

*/

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
11년 전 조회 2,657
11년 전 조회 2,880
11년 전 조회 1,263
11년 전 조회 2,133
11년 전 조회 1,647
11년 전 조회 4,277
11년 전 조회 2,187
11년 전 조회 2,093
11년 전 조회 2,350
11년 전 조회 4,316
11년 전 조회 4,265
11년 전 조회 4,047
11년 전 조회 1,740
11년 전 조회 4,115
11년 전 조회 3,374
11년 전 조회 3,853
11년 전 조회 1,368
11년 전 조회 3,172
11년 전 조회 3,163
11년 전 조회 3,221
11년 전 조회 2,213
11년 전 조회 2,679
11년 전 조회 1,994
11년 전 조회 1,798
11년 전 조회 2,406
11년 전 조회 1,721
11년 전 조회 4,594
11년 전 조회 4,470
11년 전 조회 2,032
11년 전 조회 3,255
11년 전 조회 1,656
11년 전 조회 2,464
11년 전 조회 4,069
11년 전 조회 4,383
11년 전 조회 5,286
11년 전 조회 1,655
11년 전 조회 2,226
11년 전 조회 3,626
11년 전 조회 1,822
11년 전 조회 1,835
11년 전 조회 2,404
11년 전 조회 1,708
11년 전 조회 2,927
11년 전 조회 2,457
11년 전 조회 4,520
11년 전 조회 2,963
11년 전 조회 5,216
11년 전 조회 2,028
11년 전 조회 1,916
11년 전 조회 2,569
11년 전 조회 2,536
11년 전 조회 2,100
11년 전 조회 1,697
11년 전 조회 2,368
11년 전 조회 1,874
11년 전 조회 1,861
11년 전 조회 2,060
11년 전 조회 1,980
11년 전 조회 1,606
11년 전 조회 2,800
11년 전 조회 2,775
11년 전 조회 3,904
11년 전 조회 1,921
11년 전 조회 1,668
11년 전 조회 1,659
11년 전 조회 3,604
11년 전 조회 1,784
11년 전 조회 2,118
11년 전 조회 1,645
11년 전 조회 2,283
11년 전 조회 2,253
11년 전 조회 1,655
11년 전 조회 1,842
11년 전 조회 1,686
11년 전 조회 1,640
11년 전 조회 2,315
11년 전 조회 1,760
11년 전 조회 1,679
11년 전 조회 1,827
11년 전 조회 1,803
11년 전 조회 1,503
11년 전 조회 1,702
11년 전 조회 2,085
11년 전 조회 1,757
11년 전 조회 1,990
11년 전 조회 1,748
11년 전 조회 1,679
11년 전 조회 1,928
11년 전 조회 1,673
11년 전 조회 1,681
11년 전 조회 1,753
11년 전 조회 2,655
11년 전 조회 1,713
11년 전 조회 1,720
11년 전 조회 1,503
11년 전 조회 1,971
11년 전 조회 1,707
11년 전 조회 1,515
11년 전 조회 1,962
11년 전 조회 2,177