摘要: 链接:https://www.nowcoder.com/discuss/111305目录Linux系统.Linux根目录下有哪些目录,各自存放些什么内容,交换分区的意义,文件添加可执行权限,分用户添加权限,超大日志文件里面的内容查找,如何使用nginx反向代理(简历上... 阅读全文
posted @ 2019-03-17 18:00 strawqqhat 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.nowcoder.com/discuss/112192 目录1.手撕代码,二分查找,递归非递归2.java反射机制,优点缺点3.java线程同步,synchronized锁升级机制,synchronized lock区别4.项目,感觉最难... 阅读全文
posted @ 2019-03-17 11:13 strawqqhat 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.nowcoder.com/discuss/113126目录1.介绍一个自己做过的项目2.针对上述项目,用过哪些框架3.实现哪些功能4.常用的数据结构,红黑,搜索,查找…没深问5.常用网络协议,arp.dhcp…6.如何获取ip,考察dhc... 阅读全文
posted @ 2019-03-17 10:35 strawqqhat 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1、在理解红黑树之前,先看一下二叉查找树 二叉查找树特性:左子树上所有节点的值都小于或等于其他根节点上的值,右子树上所有节点的值均大于或等于他的根节点的值。左右字数也分别为平衡二叉树。举个例子:如果要查询10的话,10>9 因此到他的右子树,右子树根节点为... 阅读全文
posted @ 2019-03-17 09:59 strawqqhat 阅读(215) 评论(0) 推荐(0) 编辑
#home h1{ font-size:45px; } body{ background-image: url("放你的背景图链接"); background-position: initial; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-origin: initial; background-clip: initial; height:100%; width:100%; } #home{ opacity:0.7; } .wall{ position: fixed; top: 0; left: 0; bottom: 0; right: 0; } div#midground{ background: url("https://i.postimg.cc/PP5GtGtM/midground.png"); z-index: -1; -webkit-animation: cc 200s linear infinite; -moz-animation: cc 200s linear infinite; -o-animation: cc 200s linear infinite; animation: cc 200s linear infinite; } div#foreground{ background: url("https://i.postimg.cc/z3jZZD1B/foreground.png"); z-index: -2; -webkit-animation: cc 253s linear infinite; -o-animation: cc 253s linear infinite; -moz-animation: cc 253s linear infinite; animation: cc 253s linear infinite; } div#top{ background: url("https://i.postimg.cc/PP5GtGtM/midground.png"); z-index: -4; -webkit-animation: da 200s linear infinite; -o-animation: da 200s linear infinite; animation: da 200s linear infinite; } @-webkit-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @-o-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @-moz-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @keyframes cc { 0%{ background-position: 0 0; } 100%{ background-position: 600% 0; } } @keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-webkit-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-moz-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-ms-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } }