逐行入栈,排序后直接输出第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
#一、Linux操作系统引导过程 ###1.1 开机自检 1.服务器主机开机以后,将根据主板BIOS中的设置对CPU、内存、显卡、键盘等设备进行初步检测,检测成功后根据预设的启动顺序移交系统控制权,大多时候会移交给本机硬盘。 2.总结:检测出第一个能够引导系统的设备,比如硬盘或者光驱 ###1.2 ...
分类:
其他好文 时间:
2021-06-24 17:39:53
阅读次数:
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
重启服务器 光标第一行按E进入单用户模式 UTF8后面添加rd.break 然后ctrl+x 同时按 mount -o remount,rw /sysroot chroot /sysroot passwd touch /.autorelabel exit reboot ...
分类:
其他好文 时间:
2021-06-21 20:27:56
阅读次数:
0
body { background: url('xx.jpg')top center no-repeat; background-size:cover; } body{ background:url('back.jpg'); background-attachment:fixed; backgrou ...
分类:
Web程序 时间:
2021-06-20 18:22:09
阅读次数:
0
把当前目录变为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
挂载IP-SAN ipsan重新分区,详见IPSAN的配置手册; 运行安装iscsi-initiator-utils-6.2.0.872-10.el6.i686.rpm 启动iscsi服务/etc/init.d/iscsi start(如果该项未能启动,直接进入下面操作) 发现网络中的存储节点,其中 ...
分类:
系统相关 时间:
2021-06-18 19:35:16
阅读次数:
0