转自:Distributed Algorithms in NoSQL Databases系统的可扩展性是推动NoSQL运动发展的的主要理由,包含了分布式系统协调,故障转移,资源管理和许多其他特性。这么讲使得NoSQL听起来像是一个大筐,什么都能塞进去。尽管NoSQL运动并没有给分布式数据处理带来根本...
分类:
数据库 时间:
2015-01-30 21:01:45
阅读次数:
250
原题链接:https://oj.leetcode.com/problemset/algorithms/
这里用递归的方法实现。递归函数签名为void generate(int left, int right, int n, string prev)
1. left,right分别为当前左右括号的个数,prev缓存之前的临时结果
2. left小于n的时候,可以一直加入左括号
3. ...
分类:
其他好文 时间:
2015-01-27 16:28:01
阅读次数:
120
??
1.STL组成:
STL有三大核心部分:容器(Container)、算法(Algorithms)、迭代器(Iterator),容器适配器(containeradaptor),函数对象(functor),除此之外还有STL其他标准组件。通俗的讲:
容器:装东西的东西,装水的杯子,装咸水的大海,装人的教室……STL里的容器是可容纳一些数据的模板类。
算法:就是往杯子里倒水,往大海...
分类:
编程语言 时间:
2015-01-24 13:11:41
阅读次数:
312
Machine Learning:Neural Network
前言:
Wikipedia上对Neural Network的定义:
In machine learning,artificial neural networks (ANNs) are a family of statistical learning algorithms inspired by
biological...
分类:
Web程序 时间:
2015-01-17 01:17:02
阅读次数:
345
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/string-to-integer-atoi/Implement atoi to convert a string...
分类:
其他好文 时间:
2015-01-14 00:36:59
阅读次数:
143
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/reverse-integer/Reverse digits of an integer.Example1: x ...
分类:
其他好文 时间:
2015-01-14 00:36:01
阅读次数:
167
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Algorithms{ public class LRUImplementation { ...
分类:
系统相关 时间:
2015-01-13 13:57:35
阅读次数:
224
https://oj.leetcode.com/problemset/algorithms/http://www.cnblogs.com/yuzhangcmu/p/4128794.html/**
*Definitionforsingly-linkedlist.
*publicclassListNode{
*intval;
*ListNodenext;
*ListNode(intx){
*val=x;
*next=null;
*}
*}
*/
publicclassSolution{
//Assumehead..
分类:
其他好文 时间:
2015-01-09 19:34:00
阅读次数:
143
https://oj.leetcode.com/problemset/algorithms/http://siddontang.gitbooks.io/leetcode-solution/content/array/find_peak_element.htmlpublicclassSolution{
publicintfindPeakElement(int[]num){
//SolutionA:
returnfindPeakElement_Binary(num);
//SolutionB:
//retur..
分类:
其他好文 时间:
2015-01-09 19:31:41
阅读次数:
202
【算法思路】利用折半查找的思路去查找这个最小元素
【编程步骤】
* 1. 如果数组num只有一个元素,则所求的最小的元素就是它了;
* 2. 若left到right位置的元素严格递增,则最小的元素为num[left],如左图
否则,如右图,利用折半查找,若left到mid递增有序,则最小元素必出现在右边部分:mid+1到right;
若mid到right递增有序,则最小元素出现在左边部分:left到mid;
while(left<right){
if(num[left]<num...
分类:
其他好文 时间:
2015-01-07 16:55:49
阅读次数:
171