摘要: package com.company.algorithm.A20211126; public class Structure { // 先进先出 队列 private static class Q { int head; int tail; int[] data = new int[101]; } 阅读全文
posted @ 2021-11-30 20:30 姓蜀名黍 阅读(32) 评论(0) 推荐(0)