小端存储--低内存低字节87654321字节或半字节的最低位字节(LowestSignificantBit,LSB)存放于内存最低位字节地址上。即最低地址存放的最低字节,为PowerPC,Intelx86系列等采用。inta=0x12345678;78为低字节12为高字节voidfFun(){int...
分类:
其他好文 时间:
2014-06-12 19:14:32
阅读次数:
225
最近在项目开发过程中,需要在采用JAVA作为语言的服务器与采用C++作为语言的服务器间进行通信,这就涉及到这两种语言间数据类型的转换以及网络字节序与主机字节序的区别。该文主要说说网络字节序和主机字节序的区别以及Little
endian与Big endian的概念。其实编程的事就比较简单了 我也懒得...
分类:
其他好文 时间:
2014-06-09 20:40:43
阅读次数:
382
Running KVM and Openvswitch on Ubuntu 12.10
I’ve got an aging VMWare ESXi 4.0 server that needs to be replaced with
something a little more modern and...
分类:
其他好文 时间:
2014-06-09 18:07:21
阅读次数:
324
1、用退化的线段树(也就是没有区间查询)做。。。2、注意longlong。#include#include#include#includeusing
namespace std;int n,q;int a[200010],s[200010];int main(){
scanf("%d%d",&n,....
分类:
其他好文 时间:
2014-06-09 17:30:11
阅读次数:
227
These code is for the problem "Let the balloons
Fly" in ACM 1004 which need deal with string.It is a little difficult in some
content so that I rewrit...
分类:
其他好文 时间:
2014-06-09 13:33:35
阅读次数:
266
/** * @copyright 2011 Chunhui Wang * *
wangchunhui@wangchunhui.cn*/#includeint main(){ printf("\t\t\t万年历\n");
printf("\t\t\t\t------Made by Chunhui .....
分类:
编程语言 时间:
2014-06-06 11:36:31
阅读次数:
218
/** * @copyright 2012 Chunhui Wang * *
wangchunhui@wangchunhui.cn * * 学生学籍管理系统(12.06) */ #include #include #include
#include #include #include #incl.....
分类:
编程语言 时间:
2014-06-06 10:57:47
阅读次数:
579
Samba详解原文
http://blog.csdn.net/seward_wang/article/details/12614263 samba-client.i386
samba-common.i386 samba.i386 samba-swat.i386...
分类:
其他好文 时间:
2014-06-05 17:23:51
阅读次数:
207
求和print(Array(1,7,2,9).sum)结果19要使用sum方法,元素类型必须是数值类型:要么是整形,要么是浮点数或者BigInteger/BigDecimal。print(ArrayBuffer("Mary","had","a","little","lamb").max)结果little排序valb=ArrayBuffer(1,7,2,9)
valbSorted=b.sorted
print(bSorted)..
分类:
其他好文 时间:
2014-06-02 03:23:26
阅读次数:
354
题意:有A,B两个人,n道题目,每题有对应的分数,B答对题目的概率是0.5,求A不输给B的概率不小于P要拿的最低分数
思路:DP,dp[i][j]来表示B答了前i题后分数为j的概率,,然后通过B的概率求A的最低分数#include
#include
#include
#include
using namespace std;
const int MAXN = 40010;
int a[...
分类:
其他好文 时间:
2014-06-02 02:25:20
阅读次数:
243