摘要:
这个开始自己做的动态规划复杂度达到了O(n), 是用的是2维的矩阵来存前面的数据,复杂度太高了, 虽然好理解,但是没效率,后面看这个博客发现没有动态规划做了这个题 也是比较厉害。转载地址:https://blog.csdn.net/camellhf/arti... 阅读全文
摘要:
AndroidStudio新建项目报错build failed报错信息org.gradle.initialization.ReportedException: org.gradle.internal.exceptions.LocationAwareExcep... 阅读全文
摘要:
原博客地址 https://blog.csdn.net/androidchanhao/article/details/81271077题目链接https://leetcode.com/problems/stone-game/discuss/ https://... 阅读全文
摘要:
题目详情Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their bi... 阅读全文
摘要:
博客转载地址:https://blog.csdn.net/flyawayl/article/details/53538369思路:利用快速排序的思想,把数组递归划分成两部分。设划分为x,数组左边是小于等于x,右边大于x。 关键在于寻找一个最优的划分,经过 B... 阅读全文
摘要:
区块链的定义一种浅显易懂的说法就是按照时间顺序将数据区块以顺序相连的方式组合成的一种链式数据结构区块链的特点区块链是一个分布式的账本数据库网络中的每个节点都有一本完整的账本无法篡改去中心化,降低成本,提高效率区块链类型公有链网络的节点就是整个网络的节点联盟链... 阅读全文
摘要:
原博客地址: https://www.cnblogs.com/brucemengbm/p/6875340.html 五大经常使用算法 之 动态规划法 一、基本概念 动态规划过程是:每次决策依赖于... 阅读全文
摘要:
题目You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only cons... 阅读全文
摘要:
题目On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 indexed).Once you pay the cost, you can either climb on... 阅读全文
摘要:
博客出处: https://blog.csdn.net/u013309870/article/details/75193592 ... 阅读全文