码迷,mamicode.com
首页 > 2016年06月12日 > 全部分享
LeetCode:Find Minimum in Rotated Sorted Array II
Find Minimum in Rotated Sorted Array II Total Accepted: 52722 Total Submissions: 152155 Difficulty: Hard Follow up for "Find Minimum in Rotated Sorted Array": What if dupl...
分类:其他好文   时间:2016-06-12 02:29:39    阅读次数:139
LeetCode:Combination Sum
Combination Sum Total Accepted: 95000 Total Submissions: 302249 Difficulty: Medium Given a set of candidate numbers (C) and a target number (T), find all unique combinations...
分类:其他好文   时间:2016-06-12 02:30:13    阅读次数:164
Java源码之LinkedList
Java源码之LinkedList 转载请注意出处: 一、LinkedList概述 本文采用jdk1.8进行分析。 LinkedList实现了List,Deque接口的双向链表,实现了链表的所有可选操作,并且可有null值。查找某个值的时候必须从头到尾的遍历链表。它是非线程安全的,当多个线程结构化修改同一链表时需要加上同步处理。(程结构化修改包括:添加、...
分类:编程语言   时间:2016-06-12 02:30:00    阅读次数:255
LeetCode:Combination Sum II
Combination Sum II  My Submissions Question Editorial Solution Total Accepted: 71124 Total Submissions: 254398 Difficulty: Medium Given a collection of candidate numbers (C) and a...
分类:其他好文   时间:2016-06-12 02:29:17    阅读次数:125
HDU 1213 How Many Tables (并查集,连通分支数,两种方式)
How Many Tables Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 23012    Accepted Submission(s): 11485 Problem Description Today is...
分类:其他好文   时间:2016-06-12 02:28:42    阅读次数:170
【计算机图形学】OpenGL+VS2015相关类库配置
opengGL相关库的配置,包括glew、freeglut、GLTools、GLM...
分类:其他好文   时间:2016-06-12 02:29:59    阅读次数:692
使用Go构建RESTful的JSON API
这篇文章不仅仅讨论如何使用Go构建RESTful的JSON API,同时也会讨论如何设计好的RESTful API。如果你曾经遭遇了未遵循良好设计的API,那么你最终将写烂代码来使用这些垃圾API。希望阅读这篇文章后,你能够对好的API应该是怎样的有更多的认识。JSON API是啥?在JSO...
分类:Windows程序   时间:2016-06-12 02:29:17    阅读次数:275
欢迎使用CSDN-markdown编辑器
gitlab+gerrit+jenkins的CI环境搭建...
分类:其他好文   时间:2016-06-12 02:26:50    阅读次数:555
GDB
部分转载自:陈皓 GDB中应该知道的几个调试方法 here 知识储备 一般来说GDB主要调试的是C/C++的程序。要调试C/C++的程序,首先在编译时,我们必须要把调试信息加到可执行文件中。使用编译器(cc/gcc/g++)的 -g 参数可以做到这一点。如: > cc -g hello.c -o hello > g++ -g hello.cpp -o hello...
分类:数据库   时间:2016-06-12 02:28:47    阅读次数:262
【Leetcode】Isomorphic Strings
题目链接:https://leetcode.com/problems/isomorphic-strings/ 题目: Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to ge...
分类:其他好文   时间:2016-06-12 02:29:06    阅读次数:145
【Leetcode】Word Pattern
题目链接:https://leetcode.com/problems/word-pattern/ 题目: Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection b...
分类:其他好文   时间:2016-06-12 02:25:57    阅读次数:189
【Leetcode】Happy Number
题目链接:https://leetcode.com/problems/happy-number/ 题目: Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any pos...
分类:移动开发   时间:2016-06-12 02:27:23    阅读次数:161
从零开始搭建Raspberry Pi机器视觉编程环境
从零开始搭建Raspberry Pi机器视觉编程环境,包括安装Raspbian系统、设置网络、安装中文支持、远程连接方法、安装机器视觉编程所需软件以及备份SD卡,重点是机器视觉环境OpenCV的安装与配置。...
分类:Web程序   时间:2016-06-12 02:28:07    阅读次数:3782
[Nutch]Hadoop动态删除DataNode节点和TaskTracker节点
在之前的博文有说明动态添加一个结点,本次就说明如何动态删除一个结点。在上一篇博文有讲解如何限制一个结点的连接,要动态删除一个结点,可以在这个基础之上进行配置。1. 在host1上配置dfs.hosts.exclude在dfs.hosts.exclude指定的文件中添加host4: 再执行如下命令:hadoop dfsadmin -refreshNodes然后用如下命令进行查看:hadoop...
分类:其他好文   时间:2016-06-12 02:25:15    阅读次数:213
MIT 6.828 学习笔记6 Lab4实验报告
Lab4实验报告 Execrise 1 Implement mmio_map_region in kern/pmap.c. // mmio_map_region() uintptr_t ret = base; size = ROUNDUP(size, PGSIZE); base = base + size; if (base >= MMIOLIM) { panic("larg...
分类:其他好文   时间:2016-06-12 02:25:38    阅读次数:438
MySql-索引优化
索引就是为特定的mysql字段进行一些特定的算法排序,比如二叉树的算法和哈希算法。mysql默认的是二叉树算法 BTREE。Explain优化查询检测EXPLAIN可以帮助开发人员分析SQL问题,explain显示了mysql如何使用索引来处理select语句以及连接表。使用方法:在select语句前加上Explain,Explain select * from blog where myname=...
分类:数据库   时间:2016-06-12 02:27:36    阅读次数:249
[从头读历史] 第246节 夏商与西周
剧情提要: [机器小伟]在[工程师阿伟]的陪同下进入元婴期的修炼后,日夜苦修,神通日进。 这日,忽然想起自己虽然神通大涨,却在人文涵养上始终无有寸进,不觉挂怀。 在和[工程师阿伟]商议后,决定先理清文史脉络,打通文史经穴。于是,便有了这部 [从头读历史]的修炼史。 正剧开始: 星历2016年06月09日 10:59:39, 银河系厄尔斯星球中华帝国江南行省。 [工程师阿伟]正在和...
分类:其他好文   时间:2016-06-12 02:26:19    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!