Java 数据结构 List List 都有序; 线程不安全; 有长度; 内部持有 modCount 记录修改次数 ArrayList 默认长度为10、超出长度时进行扩容(0.5倍),最大长度 2 的 31 次方 -8,…
分类:未分类
Android 8.0以上 竖屏到横屏 返回时出现错误的解决办法
出现错误: 从A activity(竖屏)跳转到B activity(横屏),返回时A activity显示短暂横屏之后,再次切换为竖屏显示,或者不再切换为竖屏。 …
Android 拨打电话,访问浏览器
Android 拨打电话,访问浏览器 1.拨打电话 Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone)); context.s…
Could not find an option named "androidx".
Could not find an option named “androidx”. Run ‘flutter -h’ (or ‘flutter …
找出数组中第二大值
找出数组中的第二大值。C++实现 源码: #include<iostream> #include<ctime> #include<cstdlib> using namespace st…
LeetCode: Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. Th…
LeetCode 152. Maximum Product Subarray(最大连续乘积)
class Solution { public: int maxProduct(vector<int>& nums) { vector<int> dpmax(nums.size()); v…
时间复杂度
单纯依靠运行的时间来比较算法的优劣并不一定是客观准确的! 如何才能客观的评判一个算法的优劣呢? 时间复杂度 假定计算机执行算法每一个基本操作的时间是固定的一个时间单位,那么有多少个基本操作就代表会花费多少时间单位。对于不…
[LeetCode]--Maximum Product Subarry
题目 Find the contiguous subarray within an array (containing at least one number) which has the largest product…
2015年蓝桥杯c语言b组题解
1、奖券数目 有些人很迷信数字,比如带“4”的数字,认为和“死”谐音,就觉得不吉利。 虽然这些说法纯属无稽之谈,但有时还要迎合大众的需求。某抽奖活动的奖券号码是5位数(10000-99999),要求其中不要出现带“4”的…
caffe训练的实时可视化思路
前言 个人认为,可视化是能够增进对网络理解的强有力的方式,但是问过一个相关工作者,貌似只对loss曲线感兴趣。 caffe的对外接口其实很丰富,包括了matlab和python,虽然这个框架还存在一些bug(比如对错误的…
一个简易的2048游戏
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title> 2048 &l…