上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页
摘要: 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。示例:输入: ["eat", "tea", "tan", "ate", "nat", "bat"],输出:[ ["ate","eat","tea"], ["nat","tan"]... 阅读全文
posted @ 2019-01-04 18:33 strawqqhat 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。案例:s = "leetcode"返回 0.s = "loveleetcode",返回 2. 注意事项:您可以假定该字符串只包含小写字母。class Solution { pu... 阅读全文
posted @ 2018-12-26 21:19 strawqqhat 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 假设Andy和Doris想在晚餐时选择一家餐厅,并且他们都有一个表示最喜爱餐厅的列表,每个餐厅的名字用字符串表示。你需要帮助他们用最少的索引和找出他们共同喜爱的餐厅。 如果答案不止一个,则输出所有答案并且不考虑顺序。 你可以假设总是存在一个答案。示例 1:输入:["S... 阅读全文
posted @ 2018-12-26 21:07 strawqqhat 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 5、字符串与数组5.1、字符串创建于存储的机制是什么字符串的声明和初始化主要有以下两种情况: 1:对于String s1 = new String("abc")语句与String s2 = new String("abc")语句,存在两个引用对象s1,s2,... 阅读全文
posted @ 2018-12-09 16:29 strawqqhat 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 一位资深程序员大牛给予Java初学者的学习路线建议java学习这一部分其实也算是今天的重点,这一部分用来回答很多群里的朋友所问过的问题,那就是我你是如何学习Java的,能不能给点建议?今天我是打算来点干货,因此咱们就不说一些学习方法和技巧了,直接来谈每个阶段要学习的内... 阅读全文
posted @ 2018-12-05 21:02 strawqqhat 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 先说什么是javajava是一种面向对象语言,真正的面向对象,任何函数和变量都以类(class)封装起来至于什么是对象什么是类,我就不废话了关于这两个概念的解释任何一本面向对象语言的教材里面都有知道了什么是java,那自然就会对java能干什么感兴趣在说java能做什... 阅读全文
posted @ 2018-12-03 19:29 strawqqhat 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Java Web 学习路线实际上,如果时间安排合理的话,大概需要六个月左右,有些基础好,自学能力强的朋友,甚至在四个月左右就开始找工作了。大三的时候,我萌生了放弃本专业的念头,断断续续学 Java Web 累计一年半左右,总算是学完了,找工作对你来说或许还有些距离,而... 阅读全文
posted @ 2018-12-02 21:49 strawqqhat 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 设计模式是一享元模式和观察者模式等。套被反复使用、为多数人知晓、经过分类编目的、代码设计经验的总结。使用设计模式的目的是为了代码重用,避免程序大量修改,同时使代码更易于理解,并且保证代码可靠性。常见的设计模式有工厂模式、单例模式、适配器模式等。1、什么是单例模式 ... 阅读全文
posted @ 2018-12-02 19:57 strawqqhat 阅读(98) 评论(0) 推荐(0) 编辑
摘要: SQLyog连接数据库报错plugin caching_sha2_password could not be loaded2018年06月01日 16:08:09 乌班图ysm 阅读数:3098更多个人分类: 2.7 数据库编程 打开cmd:mysql -uroot... 阅读全文
posted @ 2018-12-01 15:10 strawqqhat 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 状态图是系统分析的一种常用的建模元素,用来表示系统的行为。在面向对象技术中状态图又被称为状态迁移图,它是有限状态机的图形表示,用于描述一个对象类的一个对象在其生存期间的行为。1、状态图的基本概念1.1、状态机的含义 状态机是一种记录下给定时刻状态的设备,它可... 阅读全文
posted @ 2018-12-01 14:01 strawqqhat 阅读(455) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页
#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%; } }