Notes
Notes - notes.io |
using namespace std;
class Node {
public:
int data;
Node* next;
Node(int value) {
data = value;
next = nullptr;
}
};
class CircularLinkedList {
public:
Node* head;
CircularLinkedList() {
head = nullptr;
}
void push(int data) {
Node* new_node = new Node(data);
if (!head) {
head = new_node;
new_node->next = head;
} else {
new_node->next = head;
Node* temp = head;
while (temp->next != head) {
temp = temp->next;
}
temp->next = new_node;
head = new_node;
}
}
string pop() {
if (!head) {
return "Tumpukan kosong";
}
if (head->next == head) {
int popped = head->data;
delete head;
head = nullptr;
return "Data yang di-pop: " + to_string(popped);
} else {
Node* temp = head;
Node* prev = nullptr;
while (temp->next != head) {
prev = temp;
temp = temp->next;
}
prev->next = head;
int popped = temp->data;
delete temp;
return "Data yang di-pop: " + to_string(popped);
}
}
string displayStack() {
if (!head) {
return "Tumpukan kosong";
}
string result = "Isi tumpukan: ";
Node* temp = head;
do {
result += to_string(temp->data) + " ";
temp = temp->next;
} while (temp != head);
return result;
}
};
class CircularQueue {
public:
Node* front;
Node* rear;
CircularQueue() {
front = rear = nullptr;
}
void enqueue(int data) {
Node* new_node = new Node(data);
if (!front) {
front = rear = new_node;
rear->next = front;
} else {
new_node->next = front;
rear->next = new_node;
rear = new_node;
}
}
string dequeue() {
if (!front) {
return "Antrian kosong";
}
if (front == rear) {
int dequeued = front->data;
delete front;
front = rear = nullptr;
return "Data yang di-dequeue: " + to_string(dequeued);
} else {
Node* temp = front;
front = front->next;
rear->next = front;
int dequeued = temp->data;
delete temp;
return "Data yang di-dequeue: " + to_string(dequeued);
}
}
string displayQueue() {
if (!front) {
return "Antrian kosong";
}
string result = "Isi antrian: ";
Node* temp = front;
do {
result += to_string(temp->data) + " ";
temp = temp->next;
} while (temp != front);
return result;
}
};
// Contoh penggunaan
int main() {
CircularLinkedList stack;
stack.push(1000);
stack.push(1001);
stack.push(1002);
cout << stack.displayStack() << endl;
cout << stack.pop() << endl;
cout << stack.displayStack() << endl;
CircularQueue queue;
queue.enqueue(1000);
queue.enqueue(1001);
queue.enqueue(1002);
cout << queue.displayQueue() << endl;
cout << queue.dequeue() << endl;
cout << queue.displayQueue() << endl;
return 0;
}
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team