摘要:
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1)) import java.util.Stack; /* * 解题注意:原栈多大,min栈就多大 * 23521 * 22221 * 题目意思是当前最小,你data栈pop掉1以后,当前min就改变了 */ public class Solution20 { Stack stac...
阅读全文
posted @ 2019-05-05 21:01
源格
阅读(127)
推荐(0)
编辑
摘要:
面试常考:归并排序的思想(分治) import java.util.Arrays; //小和问题 public class SmallSort { public static void main(String[] args) { int[] arr = {1,3,4,2,5}; System.out.println(Arrays.toString(ar...
阅读全文
posted @ 2019-05-05 20:52
源格
阅读(158)
推荐(0)
编辑