码迷,mamicode.com
首页 > 2017年01月10日 > 全部分享
461.求两个数字转成二进制后的“汉明距离” Hamming Distance
public class Solution { public int HammingDistance(int x, int y) { int distance = 0; string sX = Convert.ToString(x, 2); string sY = Convert.ToString(... ...
分类:其他好文   时间:2017-01-10 23:54:53    阅读次数:432
231.是否为2的平方根 IsPowerOfTwo
Power of Two Total Accepted: 3596 Total Submissions: 11779Given an integer, write a function to determine if it is a power of two.Credits:Special than... ...
分类:其他好文   时间:2017-01-10 23:53:59    阅读次数:500
JAVA ,JVM 调试
https://blogs.oracle.com/poonam/entry/analysis_of_strange_hotspot_crashes https://blogs.oracle.com/poonam/entry/jvm_hang_with_cms_collector https://bl ...
分类:编程语言   时间:2017-01-10 23:52:29    阅读次数:374
沟通很重要
省赛结束了,但真正的工作才刚刚开始,省赛只是国赛的前期热身。学校已经放假了,而我并没有放假,我还在指导着即将参加国赛的同学们学习,一直到小年夜才能回家。谁说教师最幸福的就是有寒暑假,看着别的教师放寒暑假而自己不能休假,其实一点也不幸福。 省赛指导的那名需要我相信他的同学,今天和苏老师说他不想参加比赛 ...
分类:其他好文   时间:2017-01-10 23:52:55    阅读次数:480
121.买卖股票 Best Time to Buy and Sell Stock
Say you have an array for which the ith element is the price of a given stock on day i.If you were only permitted to complete at most one transaction ... ...
分类:其他好文   时间:2017-01-10 23:50:23    阅读次数:341
383.判断一个字符串是否能够包含另外一个字符串 Ransom Note
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the rans... ...
分类:其他好文   时间:2017-01-10 23:51:04    阅读次数:404
350.求两个数组的交集 Intersection of Two Arrays II
Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].Note:Each element i... ...
分类:编程语言   时间:2017-01-10 23:48:30    阅读次数:466
171. Excel Sheet Column Number
Excel Sheet Column NumberRelated to question Excel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column... ...
分类:其他好文   时间:2017-01-10 23:47:33    阅读次数:373
通用mapper的使用
通用mapper的使用 导入依赖 com.github.abel533 mapper 2.3.4 配置plugins ... ...
分类:移动开发   时间:2017-01-10 23:46:11    阅读次数:1901
#HTML 标签的介绍#
HTML标签介绍 1、 单标签: (1) 注释标签:<!--132456789-> 快捷键 ctrl+/ (2) 文本换行标签:<br> (3) 横线标签:<hr> 2、 双标签: (1) 段落标签:<p>内容</p> (2) 标题标签:<h1><h2>…</h1></h2> 注意:只能从h1到h6 ...
分类:Web程序   时间:2017-01-10 23:47:53    阅读次数:443
JQuery动态操作表格
新人,小白一枚,刚刚参加工作,所以会在这里记录一些遇到的问题。 最近要做的东西,是对一个表格动态的添加行,删除行,并且对表格中内容进行非空验证。 ...
分类:Web程序   时间:2017-01-10 23:46:48    阅读次数:532
226反转二叉树 Invert Binary Tree
Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9to 4 / \ 7 2 / \ / \ 9 6 3 1Trivia:This problem was inspired by this original tweet by Max Howell:Googl... ...
分类:其他好文   时间:2017-01-10 23:47:58    阅读次数:493
BZOJ 1861 [Zjoi2006]Book 书架 ——Splay
【题目分析】 模板题目。 首尾两个虚拟结点,十分方便操作。 【代码】 ...
分类:其他好文   时间:2017-01-10 23:47:01    阅读次数:455
Linux服务器操作系统
Linux服务器操作系统 今日大纲 ●服务器操作系统的系列、Linux的主流产品、虚拟机软件 ●安装linux ●linux基本命令 ●用户管理及权限(多用户) ●实战(搭建环境及部署web项目) ***************************************************... ...
分类:系统相关   时间:2017-01-10 23:44:56    阅读次数:521
005-IIS处理过程
PipeLine调用过程ISAPIRuntime ProcessReqeustHttpRuntime ProcessRequestNoDemand ProcessRequestNow ProcessRequestInternal 封装上下文 通过对象工厂获取application对象HttpAppl ...
分类:其他好文   时间:2017-01-10 23:46:44    阅读次数:363
bzoj 3669: [Noi2014]魔法森林
3669: [Noi2014]魔法森林 动点spfa Description 为了得到书法大家的真传,小E同学下定决心去拜访住在魔法森林中的隐士。魔法森林可以被看成一个包含个N节点M条边的无向图,节点标号为1..N,边标号为1..M。初始时小E同学在号节点1,隐士则住在号节点N。小E需要通过这一片魔 ...
分类:其他好文   时间:2017-01-10 23:44:59    阅读次数:386
SSM
今天内容安排 1:复习mybatis 2:复习springMVC 3:springMVC+spring+mybatis组合起来,搭建一个web应用开发的框架 4:用户管理系统,针对用户的CRUD操作,前后端交互 mybatis复习 springmvc复习 spring-mvc web.xml配置Di... ...
分类:其他好文   时间:2017-01-10 23:45:26    阅读次数:551
889条   1 2 3 4 5 6 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!