逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:
编程语言 时间:
2021-06-25 16:32:21
阅读次数:
0
要想让uibutton点击不变灰 初始化的时候就不能 UIButton *button = [[UIButton alloc]init]; 初始化的时候酱紫,能够保证button点击时不变灰 UIButton *button = [UIButton buttonWithType:UIButtonTy ...
分类:
其他好文 时间:
2021-06-24 18:33:25
阅读次数:
0
1、8005 #关闭tomcat通信接口, port:指定一个端口,这个端口负责监听关闭Tomcat的请求 shutdown:向以上端口发送的关闭服务器的命令字符串<Server port="8005" shutdown="SHUTDOWN"> 2、8009 #与其他http服务器通信接口,用于ht ...
分类:
其他好文 时间:
2021-06-23 16:53:46
阅读次数:
0
问题一:启动的时候 解决方案: 在命令行中输入如下命令即可: 1. redis-cli.exe 2. shutdown 3. exit 4. redis-server.exe redis.windows.conf ...
分类:
其他好文 时间:
2021-06-22 18:23:41
阅读次数:
0
sqlplus / as sysdba 报错ORA-01012: not logged on 发生原因:关闭数据库是shutdown 后面没有接关闭参数中的任何一个。 nomal ————- —-所有连接都断开时才能关闭; transactional ———-等待事务结束后,主动断开连接; imme ...
分类:
其他好文 时间:
2021-06-21 20:45:57
阅读次数:
0
参考:https://mp.weixin.qq.com/s/494wqyxyFzDuGwG_51tFbQ <dependency> <groupId>net.openhft</groupId> <artifactId>affinity</artifactId> <version>3.20.0</ve ...
分类:
编程语言 时间:
2021-06-21 20:34:49
阅读次数:
0
文件相关命令: 格式:dir 文件目录 作用:查看指定目录下的所有文件或文件目录 格式:dir 文件目录 | more 作用:分页显示指定目录下的所有文件或文件目录 格式:echo 写入文件的内容 > 盘符:\..\文件名.扩展名 作用:创建一个新文件,并向该新文件中写入指定内容 注释: >> 为追 ...
把当前目录变为git仓库 git init 关联到远程仓库 # 添加关联的仓库地址 git remote add origin git@github.com:wintests/gitDemo.git # 删除当前已关联的仓库地址 git remote rm origin 查看远程库的详细信息 git ...
分类:
其他好文 时间:
2021-06-20 17:40:11
阅读次数:
0
C语言 #define NULL ((void *)0) // Definition for singly-linked list. struct ListNode { int val; struct ListNode *next; }; struct ListNode *getIntersecti ...
分类:
编程语言 时间:
2021-06-19 19:18:10
阅读次数:
0
1.在/etc/init.d/创建你的脚本 cd /etc/init.d/ sudo vim add_static_route_to_34_52.sh 2.在脚本中按如下模板填写 注意### BEGIN INIT INFO和### END INIT INFO之间的都要写,后面有机会研究下为什么。 后 ...
分类:
系统相关 时间:
2021-06-19 18:41:17
阅读次数:
0