rem自适应 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <script> var deviceWidth = window.inner ...
分类:
移动开发 时间:
2020-07-03 19:15:14
阅读次数:
92
Turbo译码算法: 1,MAP,Maximum A Posteriori,最大后验概率 2,LOG-MAP,Logarithm Maximum A Posteriori,对数最大后验概率(简化MAP运算,对数将乘除运算转换为加减运算--仍需计算复杂的对数) 3,MAX-LOG-MAP,Maximu ...
分类:
编程语言 时间:
2020-07-03 17:52:32
阅读次数:
82
Maximum Subarray (E) 题目 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and retur ...
分类:
其他好文 时间:
2020-07-03 09:14:00
阅读次数:
76
Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Input: [1,1,0,1,1,1] Output: 3 Explanation: The first two di ...
分类:
其他好文 时间:
2020-07-02 23:22:50
阅读次数:
99
题目:传送门 思路: 1. 对于s[i] = t[i] 我们不需要处理,那么去掉s[i] = t[i]后,我们能够处理的子序列必定是 10101010... 或 01010101... ; 如果是 s' = 1100 , t' = 0011 显然不能。 2. 那么我们得出这一条结论了,这道题的做法就 ...
分类:
其他好文 时间:
2020-07-02 16:54:07
阅读次数:
59
问题描述: 系统版本选择11.0,如下图: 指令集设置armv7 和 arm64 打包出来的app只支持arm64 ,如下图: 解决:修改适配系统版本到iOS10以下即可, 分析: 修改Architectures 为 arm64、armv7 支持的指令集是Architectures 和 Valid ...
分类:
移动开发 时间:
2020-07-01 20:43:00
阅读次数:
191
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0 ...
分类:
移动开发 时间:
2020-06-30 14:52:40
阅读次数:
138
1104 Sum of Number Segments (20分) Given a sequence of positive numbers, a segment is defined to be a consecutive subsequence. For example, given the s ...
分类:
其他好文 时间:
2020-06-30 00:44:09
阅读次数:
60
方法: 直接从系统视图构造修改的sql select concat('alter table ' ,table_name ,' CHANGE ' ,COLUMN_NAME, ' ' ,COLUMN_NAME, ' ' ,DATA_TYPE ,'(' ,CHARACTER_MAXIMUM_LENGTH ...
分类:
数据库 时间:
2020-06-29 18:41:13
阅读次数:
144
锚点: 可以让页面定位到某个位置上的点 代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minim ...
分类:
其他好文 时间:
2020-06-29 17:12:50
阅读次数:
102