Advertisement
Lauda

Untitled

Dec 6th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.90 KB | None | 0 0
  1. // MAIN:
  2. #include "queue_lnk.hpp"
  3.  
  4. typedef LinkedQueue<int> IntQueue;
  5.  
  6. int main()
  7. {
  8.     IntQueue a;
  9.  
  10.     a.addToQueue(1);
  11.     a.addToQueue(2);
  12.     a.addToQueue(3);
  13.  
  14.     cout << "Queue: ";
  15.     printOut(a);
  16.     cout << endl;
  17.  
  18.     cout << "-----------------------------" << endl;
  19.     cout << "Obavlja se uklanjanje iz reda!" << endl;
  20.     a.removeFromQueue();
  21.  
  22.     cout << "Queue: ";
  23.     printOut(a);
  24.     cout << endl;
  25.  
  26.     cout << "-----------------------------" << endl;
  27.     cout << "Dodavanje u red broja 45!" << endl;
  28.     a.addToQueue(45);
  29.     cout << "Queue: ";
  30.     printOut(a);
  31.     cout << endl;
  32.  
  33.     cout << "-----------------------------" << endl;
  34.     cout << "Pokusaj samo citanja (ne i uklanjanja) iz reda!" << endl;
  35.     int ret;
  36.     if (a.readFromQueue(ret))
  37.         cout << "Obavljeno citanje iz reda: " << ret << endl;
  38.     else
  39.         cout << "Citanje nije obavljeno - Prazan red!" << endl;
  40.  
  41.     cout << "-----------------------------" << endl;
  42.     cout << "Obavlja se uklanjanje iz reda!" << endl;
  43.     a.removeFromQueue();
  44.     cout << "Queue: ";
  45.     printOut(a);
  46.     cout << endl;
  47.  
  48.     cout << "-----------------------------" << endl;
  49.     cout << "Obavlja se uklanjanje iz reda!" << endl;
  50.     a.removeFromQueue();
  51.     cout << "Queue: ";
  52.     printOut(a);
  53.     cout << endl;
  54.  
  55.     cout << "-----------------------------" << endl;
  56.     cout << "Pokusaj samo citanja (ne i uklanjanja) iz reda!" << endl;
  57.     if (a.readFromQueue(ret))
  58.         cout << "Obavljeno citanje iz reda: " << ret << endl;
  59.     else
  60.         cout << "Citanje nije obavljeno - Prazan red!" << endl;
  61.  
  62.     cout << "-----------------------------" << endl;
  63.     cout << "Dodavanje u red broja 100!" << endl;
  64.     a.addToQueue(100);
  65.     cout << "Queue: ";
  66.     printOut(a);
  67.  
  68.     return 0;
  69. }
  70.  
  71.  
  72. // QUEUELNK:
  73. #ifndef QUEUE_LNK_HPP_INCLUDED
  74. #define QUEUE_LNK_HPP_INCLUDED
  75.  
  76. #include "list.hpp"
  77.  
  78. template <class T>
  79. class LinkedQueue;
  80.  
  81. template <class T>
  82. void printOut(const LinkedQueue<T> &);
  83.  
  84. template <class T>
  85. class LinkedQueue : private List <T>
  86. {
  87.     public:
  88.         LinkedQueue() {};
  89.         bool readFromQueue(T&) const;
  90.         void removeFromQueue()
  91.         {
  92.             List<T>::remove(1);
  93.         }
  94.         void addToQueue(const T &El)
  95.         {
  96.             add(size()+1, El);
  97.         }
  98.         bool empty() const
  99.         {
  100.             return List<T> :: empty();
  101.         }
  102.         int size() const
  103.         {
  104.             return List<T> :: size();
  105.         }
  106.         friend void printOut<>(const LinkedQueue<T>&);
  107.         virtual ~LinkedQueue() {}
  108. };
  109.  
  110. template <class T>
  111. void printOut(const LinkedQueue<T> &rlq)
  112. {
  113.     cout << endl;
  114.     cout << "\tVelicina reda: " << rlq.size() << endl;
  115.     cout << "\tSadrzaj reda je: ";
  116.     T retVal;
  117.     for (int i = 1; i<=rlq.size(); i++)
  118.     {
  119.         if (i>1)
  120.             cout << ", ";
  121.         rlq.read(i, retVal);
  122.         cout << retVal;
  123.     }
  124.     cout << endl << endl;
  125. }
  126.  
  127. template <class T>
  128. bool LinkedQueue<T> :: readFromQueue(T& retVal) const
  129. {
  130.     return List<T> :: read(1, retVal);
  131. }
  132.  
  133.  
  134.  
  135. #endif // QUEUE_LNK_HPP_INCLUDED
  136.  
  137. // LIST:
  138. #ifndef LIST_DEF
  139. #define LIST_DEF
  140.  
  141. #include <stdlib.h>
  142. #include <iostream>
  143. using namespace std;
  144.  
  145. template <class T>
  146. class List{
  147.     private:
  148.         struct listEl{
  149.             T content;
  150.             struct listEl *next;
  151.         };
  152.         listEl *head;
  153.         listEl *tail;
  154.         int noEl;
  155.     public:
  156.         List(){
  157.             head=tail=NULL;
  158.             noEl=0;
  159.         }
  160.         List(const List<T>&);
  161.         List<T>& operator=(const List<T>&);
  162.         virtual ~List();
  163.         int getH() const { return (int)head; }
  164.         int getT() const { return (int)tail; }
  165.         int size() const {return noEl;}
  166.         bool empty() const {return head==NULL?1:0;}
  167.         bool add(int, const T&);
  168.         bool remove(int);
  169.         bool read(int, T&)const;
  170.         void clear();
  171.  
  172. };
  173.  
  174. template <class T>
  175. ostream& operator<<(ostream & out, const List<T> &l){
  176.     out<<endl;
  177.     out<<"--------"<<endl;
  178.     for(int i=1;i<=l.size();i++){
  179.         if(i!=1) out<<", ";
  180.         T res;
  181.         l.read(i,res);
  182.         out<<res;
  183.     }
  184.     out<<endl<<"--------"<<endl;
  185.     return out;
  186. }
  187.  
  188. template <class T>
  189. List<T>::List(const List<T> &l){
  190.     head=NULL;
  191.     tail=NULL;
  192.     noEl=0;
  193.     for(int i=1;i<=l.noEl;i++){
  194.         T res;
  195.         if(l.read(i,res))
  196.             add(i,res);
  197.     }
  198. }
  199.  
  200. template <class T>
  201. List<T>& List<T>::operator=(const List<T> &l){
  202.     if(this!=&l){
  203.         clear();
  204.         head=NULL;
  205.         tail=NULL;
  206.         noEl=0;
  207.         for(int i=1;i<=l.noEl;i++){
  208.             T res;
  209.             if(l.read(i,res))
  210.                 add(i,res);
  211.         }
  212.     }
  213.     return *this;
  214. }
  215.  
  216. template <class T>
  217. List<T>::~List(){
  218.     while(!empty())
  219.         remove(1);
  220. }
  221.  
  222. template <class T>
  223. bool List<T>::add(int n, const T& newContent){
  224.     if(n<1 || n>noEl+1)
  225.         return false;
  226.     else{
  227.         listEl *newEl=new listEl;
  228.         if(newEl==NULL)
  229.             return false;
  230.         else{
  231.             newEl->content=newContent;
  232.             if(n==1){
  233.                 newEl->next=head;
  234.                 head=newEl;
  235.             }else if(n==noEl+1){
  236.                 newEl->next=NULL;
  237.                 tail->next=newEl;
  238.             }else{
  239.                 listEl *temp=head;
  240.                 for(int i=2;i<n;i++)
  241.                     temp=temp->next;
  242.                 newEl->next=temp->next;
  243.                 temp->next=newEl;
  244.             }
  245.             noEl++;
  246.             if(newEl->next==NULL)
  247.                 tail=newEl;
  248.             return true;
  249.         }
  250.     }
  251. }
  252.  
  253. template <class T>
  254. bool List<T>::remove(int n){
  255.     if(n<1 || n>noEl)
  256.         return false;
  257.     else{
  258.         if(n==1){
  259.             listEl *del=head;
  260.             head=head->next;
  261.             if(tail==del)
  262.                 tail=NULL;
  263.             delete del;
  264.             noEl--;
  265.         } else {
  266.             listEl *temp=head;
  267.             for(int i=2;i<n;i++)
  268.                 temp=temp->next;
  269.             listEl *del=temp->next;
  270.             temp->next=del->next;
  271.             if(tail==del)
  272.                 tail=temp;
  273.             delete del;
  274.             noEl--;
  275.         }
  276.         return true;
  277.     }
  278. }
  279.  
  280. template <class T>
  281. bool List<T>::read(int n,T& retVal)const{
  282.     if(n<1 || n>noEl)
  283.         return false;
  284.     else{
  285.         if(n==1)
  286.             retVal=head->content;
  287.         else if(n==noEl)
  288.             retVal=tail->content;
  289.         else{
  290.             listEl *temp=head;
  291.             for(int i=1;i<n;i++)
  292.                 temp=temp->next;
  293.             retVal=temp->content;
  294.         }
  295.         return true;
  296.     }
  297. }
  298.  
  299. template <class T>
  300. void List<T>::clear(){
  301.     while(!empty())
  302.         remove(1);
  303. }
  304.  
  305. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement