# algo_032 ### Problem Statement > Write an algorithm to check if queue is empty. ## Algorithm ``` procedure isEmpty(front) begin if(front = -1) return tree; else return false; endif end procedure ```