Преглед на файлове

fixed a bunch of conflicts

Natalie Pueyo преди 7 години
родител
ревизия
9d18b0d213
променени са 2 файла, в които са добавени 1 реда и са изтрити 2 реда
  1. 1 1
      program2/priorityqueue.cpp
  2. 0 1
      program2/priorityqueue.h

+ 1 - 1
program2/priorityqueue.cpp

@@ -16,7 +16,7 @@ void PriorityQueue::initiateHeap(int capacity){
     heapArray = new int[max_size + 1];
 }
 
-// inserts a new key into end of heap array to then 
+// inserts a new key into end of heap array to then
 void PriorityQueue::insert(int key){
   if(heap_size == max_size){
     std::cout << "PriorityQueue::insert called on full priority queue" << std::endl;

+ 0 - 1
program2/priorityqueue.h

@@ -1,4 +1,3 @@
-
 // include guard
 #ifndef PRIORITYQ_H
 #define PRIORITYQ_H