๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
C++

[๋ช…ํ’ˆ c++] 8์žฅ ์—ฐ์Šต๋ฌธ์ œ

by Meaning_ 2022. 12. 5.
728x90
๋ฐ˜์‘ํ˜•

๐Ÿฅ‘ ๋“ค์–ด๊ฐ€๊ธฐ ์ „์—

 

- 8์žฅ์€ ์ƒ์†์— ๋Œ€ํ•œ ๋‚ด์šฉ , ์›ฌ๋งŒํ•˜๋ฉด public์œผ๋กœ ํŒŒ์ƒํด๋ž˜์Šค์— ์ƒ์†ํ•ด์ฃผ์ž!

- MyQueue::MyQueue(int capacity):BaseArray(capacity) 

-> ์ด๋Ÿฐ์‹์˜ ์ƒ์„ฑ์ž ์ƒ์†(?) ์ž˜ ์จ์ฃผ๊ธฐ ์œ ์šฉํ•˜๋‹ค!

 

 

5๋ฒˆ

 

 

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
#include <iostream>
#include <string>
#include<cmath>
#include <ctime>
#include<algorithm>
 
using namespace std;
 
class BaseArray {
 
private:
    int capacity; //๋ฐฐ์—ด์˜ ํฌ๊ธฐ
    int* mem;
 
protected:
    BaseArray(int capacity = 100) {
        this->capacity = capacity;
        mem = new int[capacity];
    }
 
    ~BaseArray() {
        delete[] mem;
    }
 
    void put(int index, int val) {
        mem[index] = val;
    }
 
    int get(int index) {
        return mem[index];
    }
 
    int getCapacity() {
        return capacity;
    }
 
};
 
class MyQueue :public BaseArray {
 
    int head, tail;
    int size;
 
public:
    MyQueue(int capacity);
    void enqueue(int num);
    int capacity();
    int dequeue();
    int length();
};
 
 
MyQueue::MyQueue(int capacity):BaseArray(capacity) {
 
    head = 0;
    tail = -1;
    size = 0;
 
}
 
void MyQueue::enqueue(int num) {
    if (size == capacity()) {
        return;
    }
    put(head, num);
    head++;
    head = head % capacity();
    size++;
}
 
int MyQueue::dequeue() {
    if (size == 0) {
        return -1;
    }
    tail++;
    size--;
    tail = tail % capacity();
    return get(tail);
}
 
int MyQueue::capacity() {
    return getCapacity();
}
 
int MyQueue::length() {
    return size;
}
 
int main() {
 
    MyQueue mq(100);
 
    int n;
 
    cout << "ํ์— ์‚ฝ์ž…ํ•  5๊ฐœ์˜ ์ •์ˆ˜๋ฅผ ์ž…๋ ฅํ•˜๋ผ>>";
    for (int i = 0; i < 5; i++) {
        cin >> n;
        mq.enqueue(n);
    }
 
    cout << "ํ์˜ ์šฉ๋Ÿ‰:" << mq.capacity() << ",ํ์˜ ํฌ๊ธฐ:" << mq.length() << endl;
    cout << "ํ์˜ ์›์†Œ๋ฅผ ์ˆœ์„œ๋Œ€๋กœ ์ œ๊ฑฐํ•˜์—ฌ ์ถœ๋ ฅํ•œ๋‹ค>>";
    while (mq.length() != 0) {
        cout << mq.dequeue() << " ";
            
    }
 
    cout << endl << "ํ์˜ ํ˜„์žฌ ํฌ๊ธฐ: " << mq.length() << endl;
 
}
cs

 

6๋ฒˆ

 

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
#include <iostream>
#include <string>
#include<cmath>
#include <ctime>
#include<algorithm>
 
using namespace std;
 
class BaseArray {
 
private:
    int capacity; //๋ฐฐ์—ด์˜ ํฌ๊ธฐ
    int* mem;
 
protected:
    BaseArray(int capacity = 100) {
        this->capacity = capacity;
        mem = new int[capacity];
    }
 
    ~BaseArray() {
        delete[] mem;
    }
 
    void put(int index, int val) {
        mem[index] = val;
    }
 
    int get(int index) {
        return mem[index];
    }
 
    int getCapacity() {
        return capacity;
    }
 
};
 
class MyStack :public BaseArray {
 
    int tos;//top of stack
public:
    MyStack(int capacity);
    void push(int num);
    int capacity();
    int length();
    int pop();
    
};
 
MyStack::MyStack(int capacity) :BaseArray(capacity) {
 
    tos = 0// ๋‹ค์Œ ํ‘ธ์‰ฌํ•  ์œ„์น˜, ํฌ๊ธฐ๋กœ ๋‹ค๋ค„๋„ ๋จ
 
}
 
void MyStack::push(int num) {
    if (tos == capacity()) {
        return;
    }
 
    put(tos, num);
    tos++;
    
 
}
 
int MyStack::capacity() {
 
    return getCapacity();
 
}
 
int MyStack::length() {
 
    return tos;
 
}
 
int MyStack::pop() {
 
    if (tos == 0) {
        return -1;
    }
    
    tos--;
    return get(tos);
 
}
 
 
 
int main() {
 
    MyStack mStack(100);
    int n;
    cout << "์Šคํƒ์— ์‚ฝ์ž…ํ•  5๊ฐœ์˜ ์ •์ˆ˜๋ฅผ ์ž…๋ ฅํ•˜๋ผ>> ";
    for (int i = 0; i < 5; i++) {
        cin >> n;
        mStack.push(n);
    }
 
    cout << "์Šคํƒ ์šฉ๋Ÿ‰:" << mStack.capacity() << ", ์Šคํƒํฌ๊ธฐ:" << mStack.length() << endl;
 
    cout << "์Šคํƒ์˜ ๋ชจ๋“  ์›์†Œ๋ฅผ ํŒํ•˜์—ฌ ์ถœ๋ ฅํ•œ๋‹ค>> ";
    while (mStack.length() != 0) {
        cout << mStack.pop() << " ";
    }
    cout << endl << "์Šคํƒ์˜ ํ˜„์žฌ ํฌ๊ธฐ: " << mStack.length() << endl;
 
    
 
}
cs
 
728x90
๋ฐ˜์‘ํ˜•

๋Œ“๊ธ€