Find Jobs
Hire Freelancers

A Queue Class

$30-65 USD

Завершено
Опублікований over 22 years ago

$30-65 USD

Оплачується при отриманні
Implement a FIFO, First-In-First-Out, data structure, also known as a "queue." A queue satisfies these rules: 1) It stores data for us; if we have a queue object, say q, then when we want q to store a number, say 7.3, we "add" it to the queue with a call: [login to view URL](7.3). 7.3 is then placed into the queue q and then joins the other numbers that were on the queue. 2) Whenever we go to retreive data called "removing") from the queue, the number we get will always be the "oldest" item that we added. So if we call [login to view URL]() 10 times after the first Add() above, and then we "remove" a number from the queue, the number returned by the Remove() method will the be 7.3. This also has the effect of removing 7.3 from the queue, so it is no longer there. If you Add() three times [login to view URL](); [login to view URL](4); [login to view URL](9); [login to view URL](2); Then the queue looks like this: oldest -> 4 9 2 next add -> If you then Remove() once, the 4 is returned from the queue and it will then contain: oldest -> 9 2 next add -> If you [login to view URL](7.3); at this point the queue becomes: oldest -> 9 2 7.3 next add -> If you Remove() now, the 9 will be returned and if you Remove() immediately after that, the 2 will be returned, leaving only the 7.3 on the queue. I think you get the idea. Implement a queue of characters using C++. The queue will consist of chars. The size of the queue, implemented using a fixed size array, should be small (say 3 or 5) to easily demonstrate an overflow condition in a test run. ## Deliverables Thus, after executing the main program segment: Queue q; cout << [login to view URL]() << endl; // should be empty [login to view URL]('a'); [login to view URL]('b'); [login to view URL]('c'); [login to view URL]('d'); // should overflow [login to view URL]('e'); // should overflow cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; // should be empty [login to view URL]('h'); [login to view URL]('i'); [login to view URL]('j'); cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; cout << [login to view URL]() << endl; // should be empty the output on the screen would look like: ** empty queue ** ** full queue ** ** full queue ** a b c ** empty queue ** h i j ** empty queue ** The queue should be designed so that it will not be exhausted unless the number of items CURRENTLY waiting in the queue equals the size of the queue. That is, a queue defined to have 100 items, should be able to last FOREVER as long as there are no more than 99 items in the queue at any one time. Be sure to include a constructor in addition to the Init() method. An Init() method should do what a constructor does but in the mid-life of the queue object. Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased.
ID проекту: 2836498

Про проект

7 пропозицій(-ї)
Дистанційний проект
Активність 22 yrs ago

Хочете заробити?

Переваги подання заявок на Freelancer

Вкажіть свій бюджет та терміни
Отримайте гроші за свою роботу
Опишіть свою пропозицію
Реєстрація та подання заявок у проекти є безкоштовними
Доручений:
Аватарка користувача
See private message.
$55,25 USD за 14 дні(-в)
5,0 (80 відгуки(-ів))
5,2
5,2
7 фрілансерів(-и) готові виконати цю роботу у середньому за $37 USD
Аватарка користувача
See private message.
$25,50 USD за 14 дні(-в)
4,9 (37 відгуки(-ів))
4,5
4,5
Аватарка користувача
See private message.
$21,25 USD за 14 дні(-в)
4,5 (33 відгуки(-ів))
4,2
4,2
Аватарка користувача
See private message.
$51 USD за 14 дні(-в)
5,0 (13 відгуки(-ів))
4,0
4,0
Аватарка користувача
See private message.
$42,50 USD за 14 дні(-в)
5,0 (6 відгуки(-ів))
3,7
3,7
Аватарка користувача
See private message.
$23,80 USD за 14 дні(-в)
4,7 (32 відгуки(-ів))
3,3
3,3
Аватарка користувача
See private message.
$42,50 USD за 14 дні(-в)
0,0 (0 відгуки(-ів))
0,0
0,0

Про клієнта

Прапор UNITED STATES
United States
5,0
79
Спосіб оплати верифіковано
На сайті з жовт. 18, 2001

Верифікація клієнта

Дякуємо! Ми надіслали на вашу електронну пошту посилання для отримання безкоштовного кредиту.
Під час надсилання електронного листа сталася помилка. Будь ласка, спробуйте ще раз.
Зареєстрованих користувачів Загальна кількість опублікованих робіт
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Завантажуємо для перегляду
Дозвіл на визначення геолокації надано.
Ваш сеанс входу закінчився, і сеанс було закрито. Будь ласка, увійдіть знову.