Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他 时间:
2017-01-31 10:31:01
收藏:
0 评论:
0 赞:
0 阅读:
127
WIKI Bit manipulation is the act of algorithmically manipulating bits or other pieces of data shorter than a word. Computer programming tasks that req ...
分类:
其他 时间:
2017-01-31 10:30:46
收藏:
0 评论:
0 赞:
0 阅读:
216
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example:Given a = 1 and b = 2, return 3. 此题讲解全部都在bit m ...
分类:
其他 时间:
2017-01-31 10:30:32
收藏:
0 评论:
0 赞:
0 阅读:
170
开篇概述 1、详解google Chrome浏览器,这个标题似乎抽象了一些,我想应该把它拆分成如下几个问题,也许会更加理解一些。 问题1:目前开发中,主选浏览器有Google Chrome,IE,FireFox,Safary等,但大家却最钟爱Google Chrome,原因何在?(Google Ch ...
分类:
其他 时间:
2017-01-31 10:29:56
收藏:
0 评论:
0 赞:
0 阅读:
605
T1朴素的最长严格上升子序列 http://codevs.cn/problem/3955/ 给一个数组a1, a2 ... an,找到最长的上升降子序列ab1<ab2< .. <abk,其中b1<b2<..bk。 输出长度即可。 输入描述 Input Description 第一行,一个整数N。 第 ...
分类:
其他 时间:
2017-01-31 10:29:31
收藏:
0 评论:
0 赞:
0 阅读:
335
错误一: Exception in thread "main" org.hibernate.MappingException: Could not determine type for: java.lang.Date, for columns: [org.hibernate.mapping.Colu ...
分类:
Web开发 时间:
2017-01-31 10:28:50
收藏:
0 评论:
0 赞:
0 阅读:
217
Given two binary strings, return their sum (also a binary string). For example,a = "11"b = "1"Return "100". 此题主要考察数学知识,这里面注意,如果String的值要不断的改变的话,就最好用St ...
分类:
其他 时间:
2017-01-31 10:28:30
收藏:
0 评论:
0 赞:
0 阅读:
253
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他 时间:
2017-01-31 10:28:19
收藏:
0 评论:
0 赞:
0 阅读:
219
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他 时间:
2017-01-31 10:27:43
收藏:
0 评论:
0 赞:
0 阅读:
247
只需在maven的setting.xml文件上加入如下节点: setting.xml文件放在maven运行文件夹的conf文件夹下。 如果不想像上面增加额外的节点,可以通过以下的命令启动: ...
分类:
其他 时间:
2017-01-31 10:27:25
收藏:
0 评论:
0 赞:
0 阅读:
338
You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contai ...
分类:
其他 时间:
2017-01-31 10:27:03
收藏:
0 评论:
0 赞:
0 阅读:
192
对于每个$k$,问题等价于求有多少置换满足: 1.存在一个循环长度为$k$ 2.任意一个循环长度$\geq 2$ 枚举这种环的个数$t$: 设$g_t$表示至少有$kt$个人分成$t$个长度为$k$的循环的方案数,考虑枚举第一个人和哪些人分在了一起,同时有$(k-1)!$种可能的环,有$g_t=C( ...
分类:
其他 时间:
2017-01-31 10:26:25
收藏:
0 评论:
0 赞:
0 阅读:
203
Automatic Version 可以根据设定自动在编译时更新版本号的小插件 https://marketplace.visualstudio.com/items?itemName=PrecisionInfinity.AutomaticVersions GhostDoc 可以帮助生成注释的插件。个 ...
分类:
其他 时间:
2017-01-31 10:26:07
收藏:
0 评论:
0 赞:
0 阅读:
292
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1268&judgeId=193772 给出n = 20个数,问其是否有和为k的情况 分两段,用O(2^(n / 2))复杂度维护出每一段的所有情况。 然后枚举第一段,二分判断 ...
分类:
其他 时间:
2017-01-31 10:25:55
收藏:
0 评论:
0 赞:
0 阅读:
151
来这个公司实习已经半年多了,在年前经历了一次年终考核,最终对我的工作的评级是 C(及格-符合当前职位的工作),让我不禁思考自己在项目中的一些工作的问题,为什么我是C?是我做的不够好吗?或者说在哪里做的不够好? 从考核流程来看,基本上是 CTO 与 Team Leader 对团队成员的「年终总结与次年 ...
分类:
其他 时间:
2017-01-31 10:25:10
收藏:
0 评论:
0 赞:
0 阅读:
210
hibernate中出现 文档根元素 "hibernate-mapping" 必须匹配 DOCTYPE 根 "hibernate-configuration" 错误! 网上查资料发现这是因为hibernate.xml和我的customer.hbm.xml中的表头原因 这两个的表头不是一样的, 有细微 ...
分类:
移动平台 时间:
2017-01-31 10:24:36
收藏:
0 评论:
0 赞:
0 阅读:
527
According to the highest vote in: http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-v ...
分类:
其他 时间:
2017-01-31 10:24:23
收藏:
0 评论:
0 赞:
0 阅读:
239
原来一直都很在乎。自己看着办。 经过简单的测试这种方法还是可以的啊,有问题到时候在说吧。理论上无论是否删除好友都可以限制对方访问空间。 旁边还有可以设置不能访问的名单(看仔细点-设置限制名单)。 ...
分类:
其他 时间:
2017-01-31 10:23:44
收藏:
0 评论:
0 赞:
0 阅读:
247
1. spring.profiles.active 指定使用的profile 2. Book为配置类, profile中的配置对Book类进行注入 3. @ConfigurationProperties(prefix = "book") 开启配置文件管理并用前缀为book的值进行注入 ...
分类:
编程语言 时间:
2017-01-31 10:23:27
收藏:
0 评论:
0 赞:
0 阅读:
363
原生拖拽,拖放事件(drag and drop) 拖拽,拖放事件可以通过拖拽实现数据传递,达到良好的交互效果,如:从操作系统拖拽文件实现文件选择,拖拽实现元素布局的修改. drag and drop事件流程 一个完整的drag and drop流程通常包含以下几个步骤: 拖拽事件 以下是拖拽产生的一 ...
分类:
其他 时间:
2017-01-31 10:23:05
收藏:
0 评论:
0 赞:
0 阅读:
259