기존의 조건문 코드인
if(pos < n && t == inList[pos][0]){
if(Q.isEmpty() && t > fT) fT= t;
Q.offer(inList[pos][1]);
pos++;
}
이 부분을
while(pos<n && list[pos][0]==t) {
if(q.isEmpty() && t>ft) ft = t;
q.offer(list[pos][1]);
pos++;
}
이처럼 반복문으로 코드구현해도 되나요??
답은 맞게 나옵니다.