demonbibi

Results 2 comments of demonbibi

动态规划的两个特性:最优子结构和重叠子问题; 你的递归方法进行简单的修改也可以变为动态规划,它其实是自顶向下的求解问题,在递归到达递归边界时出栈并进行问题的计算,但是你没有对子问题进行缓存查询的逻辑,只是单纯的递归了; 你的动态规划方法,它其实是自底向上求解问题,对子问题进行了缓存和查询的逻辑;

I have met the same problem, I want to have a animation between two activities using ActivityOptions and Transition. The shared elements are ImageView and SubsamplingScaleImageView, and the default animation...