【一天一道LeetCode】#72. Edit Distance 一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder‘s Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明...
scala学习之scala与java的一些区别(二) 不带命令行参数的简化main方法:objectapp1extends Application{ println("hello world")}Scala的import可以只在局部作用域内生效;可以式“import javax.sw...
【Leetcode】Gas Station 题目链接:https://leetcode.com/problems/gas-station/题目:There areNgas stations along a circular route, where the amount of gas at stati...
【Leetcode】Next Permutation 题目链接:https://leetcode.com/problems/next-permutation/题目:Implement next permutation, which rearranges numbers into the lexicographically...
[Java]ITOO初步了解 开始接触Java的ITOO了,这两天在搭环境,结果发现,哇,好多没接触过的东西,先写篇博客来熟悉一下这些工具。JBoss基于Tomcat内核,青胜于蓝 Tomcat 服务器...
【Leetcode】Longest Palindromic Substring 题目链接:https://leetcode.com/problems/longest-palindromic-substring/题目:Given a stringS, find the longest palindromic substring inS. You...
Class类文件结构 在了解了Java内存的分布、HotSpot虚拟机对Java对象的管理以及Java垃圾收集机制之后,我们大致了解了Java自动内存管理的部分。接下来,就应该看看Java的类加载机...
[置顶] 成为C++高手之头文件 但现在看起来真不爽,main.c依赖的文件不能在工程中管理,要修改那些文件的话麻烦大了。如何既能分成多个文件又能在工程中看到呢?可以,使用头文件(h文件)。头...
【java并发】线程范围内共享数据 假设现在有个公共的变量data,有不同的线程都可以去操作它,如果在不同的线程对data操作完成后再去取这个data,那么肯定会出现线程间的数据混乱问题,因为A线程...
scala学习之apply apply: 用括号传递变量(对象)一个或多个参数时,scala会把它转化为对apply方法的调用val array=Array(1,2,3,4,5,6) array(0), 取数组的第一个元素的...