4.26 腾讯实习生测试题 :第一个编程题本地完美运行 测试结果为0,那位大佬看看问题 import java.util.*; class Queue1{ int data[]=new int[50]; int front=0; int rear=0; public void PUSH(int x){ this.data[rear]=x; rear=rear+1; } public int SIZE(){ return rear-front; } public void POP(){ if(this.SIZE()!=0){ this.front+=1; } else System....