首页 > 2017年01月31日 > 全部分享
leetcode : Longest Substring Without Repeating Characters 解题报告
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
bit manipulation
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
371. Sum of Two Integers
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
详解google Chrome浏览器(理论篇)
开篇概述 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
hibernate运行常见错误
错误一: 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
67. Add Binary
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
2. Add Two Numbers
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
leetcode : Add two numbers 解题报告
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出现错误No plugin found for prefix 'jetty' in the current project and in the plugin groups的问题解决
只需在maven的setting.xml文件上加入如下节点: setting.xml文件放在maven运行文件夹的conf文件夹下。 如果不想像上面增加额外的节点,可以通过以下的命令启动: ...
分类:其他   时间:2017-01-31 10:27:25    收藏:0  评论:0  赞:0  阅读:338
445. Add Two Numbers II
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
BZOJ4714 : 旋转排列
对于每个$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
个人常用的一些VisualStudio插件
Automatic Version 可以根据设定自动在编译时更新版本号的小插件 https://marketplace.visualstudio.com/items?itemName=PrecisionInfinity.AutomaticVersions GhostDoc 可以帮助生成注释的插件。个 ...
分类:其他   时间:2017-01-31 10:26:07    收藏:0  评论:0  赞:0  阅读:292
1268 和为K的组合 Meet in mid二分思路
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中出现 文档根元素 "hibernate-mapping" 必须匹配 DOCTYPE 根 "hibernate-configuration" 错误! 网上查资料发现这是因为hibernate.xml和我的customer.hbm.xml中的表头原因 这两个的表头不是一样的, 有细微 ...
分类:移动平台   时间:2017-01-31 10:24:36    收藏:0  评论:0  赞:0  阅读:527
Summary: Calculate average where sum exceed double limits
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
QQ空间如何设置被删除的好友不能访问空间
原来一直都很在乎。自己看着办。 经过简单的测试这种方法还是可以的啊,有问题到时候在说吧。理论上无论是否删除好友都可以限制对方访问空间。 旁边还有可以设置不能访问的名单(看仔细点-设置限制名单)。 ...
分类:其他   时间:2017-01-31 10:23:44    收藏:0  评论:0  赞:0  阅读:247
Spring-Boot:Profile简单示例
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事件流程 一个完整的drag and drop流程通常包含以下几个步骤: 拖拽事件 以下是拖拽产生的一 ...
分类:其他   时间:2017-01-31 10:23:05    收藏:0  评论:0  赞:0  阅读:259
479条   上一页 1 ... 20 21 22 23 24 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!