์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- Collection if
- ๋ ผ๋ฌธ์ด๋ก
- ์ฑ์งํผํฐ์ ์ ๋ฌด์๋ํ
- C++
- ๋น์ ๊ณต์ ๋น ๋ถ๊ธฐ ํฉ๊ฒฉ
- colab
- list
- pytorch zero to all
- DeepSpeed
- sklearn.ensemble
- ํ์ธํ๋ ๋ฉ๋ชจ๋ฆฌ ํด๊ฒฐ
- tail()
- Naive Bayes Classifier for Document Classification
- BoostCourse
- interpolate()
- SQLD ๋ฒผ๋ฝ์น๊ธฐ
- llm
- ์คํ์ ๋ฐฐ์ด ํธ์ํ๊ธฐ
- Til
- ๋ฐ์ดํฐ ๊ฒฐ์ธก์น
- inplace=True
- ์์ฐ์ด ์ฒ๋ฆฌ ๊ธฐ๋ฒ
- sqld
- ๋ฐ์ดํฐ ์๊ฐํ
- AI
- ์์ฐ์ด ์ฒ๋ฆฌ์ ๋ชจ๋ ๊ฒ
- ์์ด๋ฆฌํฌ
- Python
- Bag-of-Words
- head()
- Today
- Total
hyerong's Dev_world๐ก
[c++] stack class๋ฅผ ๊ตฌํํ์ฌ ์ฃผ์ด์ง ๋ฐฐ์ด์100๋ณด๋ค ํฐ ๊ฐ ์ญ์์ผ๋ก ์ถ๋ ฅํ๊ธฐ ๋ณธ๋ฌธ
[c++] stack class๋ฅผ ๊ตฌํํ์ฌ ์ฃผ์ด์ง ๋ฐฐ์ด์100๋ณด๋ค ํฐ ๊ฐ ์ญ์์ผ๋ก ์ถ๋ ฅํ๊ธฐ
hyerong 2023. 9. 24. 13:31๋ฌธ์
์ ์ ์์๋ฅผ ์ ์ฅํ๋ stack์ class๋ฅผ ์ฌ์ฉํ์ฌ ๊ตฌํํ๊ณ , ์ด๋ฅผ ์ด์ฉํ์ฌ, ์ฃผ์ด์ง array์ ์ ์ ์์ n๊ฐ ์์ 100๋ณด๋ค
ํฐ ๊ฐ์ ์ญ์์ผ๋ก ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค. (๋ค์ main() ํจ์๊ฐ ๋์ํ๋๋ก ๋๋จธ์ง ๋ถ๋ถ์ ์์ฑ)
int main()
{
mystack s1;
int list[5] = { 32, 123, 27, 131, 242 }, i, x;
s1.init();
for (i = 0; i < 5; i++ )
if (list[i]> 100)
s1.push( list[i] );
while ( ! s1.stack_empty( ) )
{
x = s1.pop( );
cout << x << endl ;
}
return 0;
}
๋ฌธ์ ํฌ์ธํธ
1) ์กฐ๊ฑด์ ๋ง๊ฒ ์คํ์ ํธ์๋ฅผ ํ ์ ์๋๊ฐ
2) ์กฐ๊ฑด์ ๋ง๊ฒ ์คํ์์ ํ์ ํ ์ ์๋๊ฐ
3) stack class๋ฅผ ๊ตฌํํ ์ ์๋๊ฐ
4) stack์ adt๋ฅผ ์ดํดํ๋๊ฐ
'๋ฌธ์ ํ์ด๐ฉ๐ปโ๐ป' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[python] ๋ฆฌ์คํธ ์ ์ฅ ๊ณ์ฐ ๋ฐ ํจ์ ๋ชจ๋ํ (1) | 2024.11.05 |
---|---|
[c++] Infix expression์ Postfix expression์ผ๋ก ๋ณํํ๊ธฐ (0) | 2023.09.24 |