-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfixed_stack.hpp
128 lines (107 loc) · 3.54 KB
/
fixed_stack.hpp
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#pragma once
//=====================================================================//
/*! @file
@brief 固定サイズ・スタック・クラス
@author 平松邦仁 ([email protected])
@copyright Copyright (C) 2017, 2018 Kunihito Hiramatsu @n
Released under the MIT license @n
https://github.com/hirakuni45/RX/blob/master/LICENSE
*/
//=====================================================================//
#include <cstdint>
namespace utils {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief fixed_stack class
@param[in] UNIT ユニット型
@param[in] SIZE サイズ
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <typename UNIT, uint32_t SIZE>
class fixed_stack {
public:
typedef UNIT value_type;
private:
UNIT stack_[SIZE];
uint32_t pos_;
public:
//-----------------------------------------------------------------//
/*!
@brief コンストラクタ
*/
//-----------------------------------------------------------------//
fixed_stack() noexcept : pos_(0) { }
//-----------------------------------------------------------------//
/*!
@brief 格納可能な最大サイズを返す
@return 格納可能な最大サイズ
*/
//-----------------------------------------------------------------//
uint32_t capacity() const noexcept { return SIZE; }
//-----------------------------------------------------------------//
/*!
@brief クリア
*/
//-----------------------------------------------------------------//
void clear() noexcept { pos_ = 0; }
//-----------------------------------------------------------------//
/*!
@brief 要素数を返す
@return 要素数
*/
//-----------------------------------------------------------------//
uint32_t size() const noexcept { return pos_; }
//-----------------------------------------------------------------//
/*!
@brief コンテナが空か?
@return 空なら「true」
*/
//-----------------------------------------------------------------//
bool empty() const noexcept { return pos_ == 0; }
//-----------------------------------------------------------------//
/*!
@brief 先頭の要素参照
@return 先頭の要素
*/
//-----------------------------------------------------------------//
const UNIT& top() const noexcept { return stack_[0]; }
//-----------------------------------------------------------------//
/*!
@brief 要素の参照
@return 要素
*/
//-----------------------------------------------------------------//
const UNIT& at() const noexcept { return stack_[pos_]; }
//-----------------------------------------------------------------//
/*!
@brief プッシュ
@return 成功なら「true」
*/
//-----------------------------------------------------------------//
bool push(const UNIT& u) noexcept
{
if(pos_ >= SIZE) {
return false;
}
stack_[pos_] = u;
++pos_;
return true;
}
//-----------------------------------------------------------------//
/*!
@brief ポップ @n
※格納要素が無い場合、要素型の初期値が返される。
@return 要素を返す
*/
//-----------------------------------------------------------------//
const UNIT& pop() noexcept
{
if(pos_ == 0) {
static const UNIT u;
return u;
}
--pos_;
return stack_[pos_];
}
};
}