idae在配置自动编译之后,代码都会保持自动编译。 每当它发现错误时(通常会发生错误,因为它发生在单词的中间),它会将光标移动到代码中的其他位置。 每次遇到这样的情况都有直接Alt+F4的冲动。 还好找到解决方法: 依次打开 File——>Settings——>Build, Execution, D ...
分类:
移动开发 时间:
2020-03-06 17:13:01
阅读次数:
99
题目描述 输入一个链表,输出该链表中倒数第k个结点。 题解一:栈 1 public static ListNode FindKthToTail(ListNode head,int k) { 2 if(head==null||k<=0){ 3 return null; 4 } 5 Stack<List ...
分类:
其他好文 时间:
2020-03-02 15:05:27
阅读次数:
64
注意:无特殊说明,Flutter版本及Dart版本如下:Flutter版本:1.12.13+hotfix.5Dart版本:2.7.0基础用法应用程序有时候需要弹出消息提示用户,比如‘网络连接失败’、‘下载成功’等提示,就像Android等Toast,在Flutter中使用SnackBar组件,用法如下:Scaffold.of(context).showSnackBar(SnackBar(conte
分类:
其他好文 时间:
2020-03-01 21:40:12
阅读次数:
69
class Solution: def findAnagrams(self, s: str, p: str) List[int]: l=0 r=0 res = [] p_d = {} windows_d = {} for _ in p: p_d[_] = p_d.get(_,0)+1 while(r ...
分类:
其他好文 时间:
2020-02-13 14:38:04
阅读次数:
73
多点触控(multi-touch)是通过触摸屏幕与应用程序进行交互的一种方式。多点触控输入和更传统的基于笔(pen-based)的输入的区别是多点触控识别手势(gesture)——用户可移动多根手指以执行常见操作的特殊方式。例如,在触摸屏上放置两根手指并同时移动他们,这通常意味着“放大",而以一根手 ...
1. Josephu 问题 设编号为1,2,… n的n个人围坐一圈,约定编号为 k(1 nums || countNum < 1) { System.out.println("输入数据有误"); return; } / 1. 将first, helper移动到startNo所确定的位置 1.1 he ...
分类:
其他好文 时间:
2020-01-22 14:45:09
阅读次数:
88
A. 序列 变化次数线段树很不好维护。 不妨考虑根号做法,暴力一部分。 发现对整块的修改,add操作单调性不变,按w+add sort后次数的变化一定在前缀,所以暴力保持整块内部有序。 修改时两边重构,取max时lower_bound,然后在该位置差分,更新max标记时要减去当前的add标记,相当于 ...
分类:
其他好文 时间:
2020-01-17 09:38:22
阅读次数:
79
练习UI布局 masonry 把下划线View移动左边。 开始时对齐中间的 lable ,点击时移动到对应lable下面。 使用方法: [indicator mas_updateConstraints:^(MASConstraintMaker *make) { make.centerX.equalT ...
分类:
移动开发 时间:
2020-01-13 18:22:27
阅读次数:
158
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
参考文章:https://blog.csdn.net/water_0815/article/details/54959062 在此基础上增加了窗口后台运行的功能,解决了自己的强迫症. ...
分类:
移动开发 时间:
2019-12-21 17:09:43
阅读次数:
243