码迷,mamicode.com
首页 > 2016年09月10日 > 全部分享
088. Merge Sorted Array
...
分类:其他好文   时间:2016-09-10 07:50:00    阅读次数:171
解决Centos7初次开机提示Initial setup of CentOS Linux 7
开机后提示以下信息 Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information (no user will be created) (license not accepted) Please ...
分类:系统相关   时间:2016-09-10 07:50:00    阅读次数:190
985的方格难题
题目连接:http://acm.zzuli.edu.cn/zzuliacm/problem.php?id=1894 1894: 985的方格难题 Description 985走入了一个n * n的方格地图,他已经知道其中有一个格子是坏的。现在他要从(1, 1)走到(n, n),每次只可以向下或者向 ...
分类:其他好文   时间:2016-09-10 07:50:39    阅读次数:220
进程间通信——共享内存
进程间通信——共享内存
分类:系统相关   时间:2016-09-10 06:46:37    阅读次数:187
IFA与“色“俱进,三星“量子点+曲面”如何掀起新变革?
在显示技术领域中,色彩显示精度及色彩显示设备是最为重要的两大中心焦点。从早期的CRT球面显示器与位图显示状态阶段开始、到目前形成以曲面屏幕与量子点显示技术结合的行业趋势,是整个显示领域所经历的巨大发展阶段之一。尤其在当前,以三星等一系列专注显示品质的“量子点+..
分类:其他好文   时间:2016-09-10 06:48:48    阅读次数:174
Nginx之二:负载均衡及高可用
Nginx之二:负载均衡及高可用一、Nginx负载均衡及高可用简介负载均衡是为了解决单个节点压力过大,造成Web服务响应过慢,严重的情况下导致服务瘫痪,无法正常提供服务。负载均衡,将用户的所有HTTP请求均衡的分配到每一台机器上,充分发挥所有机器的性能,提高服务的质量和用户..
分类:其他好文   时间:2016-09-10 06:46:38    阅读次数:435
从零到一:caffe-windows(CPU)配置与利用mnist数据集训练第一个caffemodel
一、前言 本文会详细地阐述caffe-windows的配置教程。由于博主自己也只是个在校学生,目前也写不了太深入的东西,所以准备从最基础的开始一步步来。个人的计划是分成配置和运行官方教程,利用自己的数据集进行训练和利用caffe来实现别人论文中的模型(目前在尝试的是轻量级的SqueezeNet)三步... ...
分类:Windows程序   时间:2016-09-10 06:46:21    阅读次数:2434
LeetCode-Integer to English Words
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. For example, 123 -> "One Hundre ...
分类:其他好文   时间:2016-09-10 06:44:43    阅读次数:163
Git for Windows 工具下载及配置
前言,关于git工具的帖子:http://cn.v2ex.com/t/225027 最终选择了git for windows这个工具,路径为:https://git-for-windows.github.io/ 安装没有什么要说的,关于git配置可参考http://www.cnblogs.com/v ...
分类:Windows程序   时间:2016-09-10 06:43:26    阅读次数:245
100. Same Tree
思路:递归。 null也是tree。 null tree (definition) Definition: (1) A tree which is empty. (2) A tree whose leaf nodes all have a null value. https://xlinux.nis ...
分类:其他好文   时间:2016-09-10 06:44:29    阅读次数:165
cocos2dx-js 的配置和安装
1.cocos2d安装所需要的系统配置配置(由于我用的是windows, 因此我只说一下windows环境下): Windows 7+ Python 2.7.5 NDK r10c+ Android SDK apache Ant 1)首先安装Python 2.7.5, 首先下载安装包,下载地址是:点击 ...
分类:Web程序   时间:2016-09-10 06:43:29    阅读次数:172
110. Balanced Binary Tree
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the dept ...
分类:其他好文   时间:2016-09-10 06:43:40    阅读次数:135
LintCode刷题笔记-- PaintHouse 1&2
标签: 动态规划 题目描述: There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color i ...
分类:其他好文   时间:2016-09-10 06:43:57    阅读次数:237
LeetCode-Two Sum III - Data structure design
Design and implement a TwoSum class. It should support the following operations: add and find. add - Add the number to an internal data structure. fin ...
分类:其他好文   时间:2016-09-10 06:42:48    阅读次数:158
20款免费备份文件软件
经常对电脑中资料进行备份的重要性已不用多说,但每次都辛苦地逐个目录拷贝、或花半天时间整理目录和文件、更不能想象重装系统后繁复的系统设置调整。如果你曾经因为这些而对系统备份工作有所迟疑,那么现在让你彻底告别这些顾虑! 1. Areca Backup 7.1.10 Areca Backup 是一个开源的 ...
分类:其他好文   时间:2016-09-10 06:42:58    阅读次数:162
104. Maximum Depth of Binary Tree
思路:纯递归。 ...
分类:其他好文   时间:2016-09-10 06:42:23    阅读次数:125
Django RedirectView
RedirectView作用是重定向一个指定,给定的Url.这个给定的Url可能包含有字典风格的字符串,因为关键字(词)会被改变,所以从这个Url中捕获的参数可能也会被修改,例如,Url中的“%”应该写成“%%”这样python才会将其修改成“%”。 如果指定的Url是None,那么会触发:Http ...
分类:其他好文   时间:2016-09-10 06:42:19    阅读次数:240
1410条   上一页 1 ... 72 73 74 75 76 77 78 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!