#!/usr/bin/env python
#coding=utf-8
import socket
def convert_integer():
data=1234
#32-bit
print "Original: %s => Long host byte order: %s, Network byte order: %s" %(data,socket.ntohl(data),so...
分类:
其他好文 时间:
2015-04-24 12:35:13
阅读次数:
209
Please make sure to add in standalone.xml under
分类:
其他好文 时间:
2015-04-24 12:29:51
阅读次数:
102
最近老大让用Spark做一个ETL项目,搭建了一套只有三个结点Standalone模式的Spark集群做测试,基础数据量大概8000W左右。看了官方文档,Spark确实在Map-Reduce上提升了很多,可是官方明确提出了在Interactive Data方面性能提升最大。但是做ETL的数据之间是平...
分类:
其他好文 时间:
2015-04-24 00:48:02
阅读次数:
142
/* 题意:把一个有序的数组转化成平衡二叉树 解法:递归*//** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; *...
分类:
其他好文 时间:
2015-04-23 23:26:09
阅读次数:
180
最近做一个题,用递归方法将整数n转换成为字符串,做了半天做好了才发现有一个库函数直接就可以实现这个功能,真是日了狗了。。。。小二,上代码。。。#include<stdio.h>
#include<stdlib.h>
#include<string.h>
//这个turnover函数是为了将字符串调转过来,..
分类:
其他好文 时间:
2015-04-23 17:43:12
阅读次数:
115
适配器模式英文原文是:Convert the interface of a class into anther interface clients expect. Adapter lets classes work together that couldni`t otherwise because of incompatible interface. 意思是将一个类的接口变化成客户端所期待的另一种...
分类:
其他好文 时间:
2015-04-23 11:07:25
阅读次数:
142
problem:
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
Hide Tags
Tree Depth-first
Search
题意:将一个递增的序列 转换成一棵 平衡查找二叉树
...
分类:
其他好文 时间:
2015-04-23 10:59:34
阅读次数:
201
problem:
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
Hide Tags
Depth-first Search Linked
List
题意:给定一个递增的单链表,将其转...
分类:
其他好文 时间:
2015-04-23 10:58:24
阅读次数:
165
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999与罗马字符转数字类似,注意按级处理。string intToRoman(int num){...
分类:
其他好文 时间:
2015-04-22 23:54:51
阅读次数:
167
Given an array where elements are sorted in ascending order, convert it to a height balanced BST....
分类:
其他好文 时间:
2015-04-22 20:43:17
阅读次数:
122