Fixed minor stuff in code-a5

This commit is contained in:
K 2024-09-25 22:53:51 +05:30
parent 1f26e9fde1
commit ea9f19e66c
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View File

@ -1,7 +1,6 @@
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
class SlidingWindow {
@ -25,9 +24,10 @@ public:
if (sent_frames.size() < window_size && next_frame_to_send < total_frames) {
sent_frames.push_back(next_frame_to_send);
next_frame_to_send++;
cout << "Sent frame " << sent_frames.back() << endl;
} else {
cout << "Window is full. Waiting before sending next frames." << endl;
cout<<"Sent frame "<<sent_frames.back()<<endl;
}
else {
cout<<"Window is full. Waiting before sending next frames."<<endl;
}
}
@ -35,13 +35,13 @@ public:
void receive_frame(int frame_number) {
if (frame_number == next_frame_to_receive) {
next_frame_to_receive++;
cout << "Received frame " << frame_number << endl;
} else {
cout << "Received frame " << frame_number << ", but expected frame " << next_frame_to_receive << endl;
cout<<"Received frame "<<frame_number<<endl;
}
else {
cout<<"Received frame "<<frame_number<<", but expected frame "<<next_frame_to_receive<<endl;
}
// remove acknowledged frames from the sent_frames queue
while (!sent_frames.empty() && sent_frames.front() <= next_frame_to_receive - 1) {
while (!sent_frames.empty() && sent_frames.front()<=next_frame_to_receive-1) {
sent_frames.erase(sent_frames.begin());
}
}
@ -66,14 +66,13 @@ int main() {
while (!window.all_frames_sent() || !window.all_frames_received()) {
window.send_frame();
// simulate receiving frames
for (int i = 0; i < rand() % 3; i++) {
for (int i=0; i<rand()%3; i++) {
int frame_number = rand() % total_frames;
window.receive_frame(frame_number);
}
}
cout << "All frames sent and received successfully!" << endl;
cout<<"All frames sent and received successfully!"<<endl;
return 0;
}