数据结构和算法:06.递归和数组实现栈结构

具体代码请看:NDKPractice项目的datastructure31recursionandstack

1. 递归和循环的区别:

  • 循环: 高效一些,循环能解决的问题递归也能解决
  • 递归: 低效一些递归能解决的问题循环不一定能解决

2. java 中的 stack(继承至 Vector)

  • vector :没指定大小的情况下,初始大小为 10,扩容为当前大小的一倍
  • ArrayList : 没指定大小的情况下,初始大小为 10,扩容为当前大小的二分之一

2. 数组实现栈结构

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
67
68
69
70
71
72
73
74
75
76
77
78
template<class E>
class ArrayStack {
private:
// 栈顶元素的角标位置
int top = -1;
E *array = NULL;
int size = 10; // 栈的初始大小
public:
// 构造和析构
ArrayStack();
~ArrayStack();

public:
/**
* 将元素压入栈中
*/
void push(E e);

/**
* 获取栈顶的元素,不弹出
*/
E peek();

/**
* 弹出栈顶元素
*/
E pop();

/**
* 栈是否为空
*/
bool isEmpty();

private:
void growArray();
};

template<class E>
ArrayStack<E>::ArrayStack() {
array = (E*)malloc(sizeof(E)*size);
}

template<class E>
ArrayStack<E>::~ArrayStack() {
delete[] array;
}

template<class E>
void ArrayStack<E>::growArray(){
size = size << 1;
// 改变内存空间大小
array = (E*) realloc(array,size * sizeof(E));
}

template<class E>
void ArrayStack<E>::push(E e) {
if(top + 1 >= size)
growArray(); // 扩容
array[top++] = e;
}

template<class E>
E ArrayStack<E>::peek() {
return array[top];
}

template<class E>
E ArrayStack<E>::pop() {
assert(top >= 0);
E e = peek();
array[top--] = NULL;
return e;
}

template<class E>
bool ArrayStack<E>::isEmpty() {
return top < 0;
}

3. 链表实现栈结构

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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
template<class E>
class Node {
public:
E value = NULL;
Node<E> *next = NULL;
public:
Node(E value, Node<E> *next) : value(value), next(next) {
}
};

template<class E>
class LinkedStack {
private:
Node<E> *first = NULL; // 头结点
int index = -1;
Node<E> *top = NULL; // 栈顶元素
public:
LinkedStack();

~LinkedStack();

public:
/**
* 将元素压入栈中
*/
void push(E e);

/**
* 获取栈顶的元素,不弹出
*/
E peek();

/**
* 弹出栈顶元素
*/
E pop();

/**
* 栈是否为空
*/
bool isEmpty();

private:
Node<E> *node(int index);
};

template<class E>
Node<E> *LinkedStack<E>::node(int index) {

if (index == 0)
return first;
else if (index < 0)
return NULL;

Node<E> *h = first;

for (int i = 0; i < index; ++i) {
h = h->next;
}
return h;
}


template<class E>
void LinkedStack<E>::push(E e) {
Node<E> *new_node = new Node<E>(e, NULL);
if (!first)
first = new_node;
else
top->next = new_node;
top = new_node;
index++;
}

template<class E>
E LinkedStack<E>::peek() {
return top;
}

template<class E>
E LinkedStack<E>::pop() {
assert(index >= 0);
E e = top->value;
delete top;

top = node(--index);
return e;
}

template<class E>
bool LinkedStack<E>::isEmpty() {
return index < 0;
}

template<class E>
LinkedStack<E>::LinkedStack() {}

template<class E>
LinkedStack<E>::~LinkedStack() {
for (int i = 0; i < index; ++i) {
delete(node(i));
}

first = NULL;
top = NULL;
index = -1;
}
-------------本文结束感谢您的阅读-------------
坚持原创技术分享,您的支持将鼓励我继续创作!
0%