Jan 20 2009 05:13 AM 3450 10 Static Queue Items nurulyusliana Write an algorithm to calculate the number of items in a static queue? rupaliverma.iti Profile Answers by rupaliverma.iti Questions by rupaliverma.iti Feb 13th, 2010 [F front R rear P pointer q[] is the array variable] Algorithm: if (F != R)P= Fcount =0 while(P <= R) {count count + 1;P P+1; }//Display count which shows number of element boyanamadhavilatha Profile Answers by boyanamadhavilatha Questions by boyanamadhavilatha Sep 23rd, 2009 [F=front, R=rear, P= pointer, q[] is the array variable] Algorithm: if F != R P= F count = 0 &... Answer Question Select Best Answer
Jan 20 2009 05:13 AM 3450 10 Static Queue Items nurulyusliana Write an algorithm to calculate the number of items in a static queue? rupaliverma.iti Profile Answers by rupaliverma.iti Questions by rupaliverma.iti Feb 13th, 2010 [F front R rear P pointer q[] is the array variable] Algorithm: if (F != R)P= Fcount =0 while(P <= R) {count count + 1;P P+1; }//Display count which shows number of element boyanamadhavilatha Profile Answers by boyanamadhavilatha Questions by boyanamadhavilatha Sep 23rd, 2009 [F=front, R=rear, P= pointer, q[] is the array variable] Algorithm: if F != R P= F count = 0 &... Answer Question Select Best Answer
rupaliverma.iti Profile Answers by rupaliverma.iti Questions by rupaliverma.iti Feb 13th, 2010 [F front R rear P pointer q[] is the array variable] Algorithm: if (F != R)P= Fcount =0 while(P <= R) {count count + 1;P P+1; }//Display count which shows number of element
boyanamadhavilatha Profile Answers by boyanamadhavilatha Questions by boyanamadhavilatha Sep 23rd, 2009 [F=front, R=rear, P= pointer, q[] is the array variable] Algorithm: if F != R P= F count = 0 &...