ld: fatal: Symbol referencing errorsRecently, I am learning the Unix C and come to know that Sockets are:– Special files used for network communicatio...
分类:
其他好文 时间:
2014-07-22 22:53:33
阅读次数:
218
【原文地址】Searching and Navigating Code in VS 2010 (VS 2010 and .NET 4.0 Series) 【原文发表日期】 Wednesday, October 21, 2009 12:50 AM 这是我针对即将发布的VS 2010 和 .NET 4所撰写的 贴子系列的第九...
分类:
其他好文 时间:
2014-07-22 08:31:36
阅读次数:
359
This week I was attending a CI training course about svn. Here I‘d like to share what I have learnt. As I am an absolutely green bird to svn, this post only covers those most common usages. (1) C...
分类:
其他好文 时间:
2014-07-20 23:33:04
阅读次数:
504
定义类
Ext.define('Cookbook.Vehicle', {
Manufacturer: 'Aston Martin',
Model: 'Vanquish',
getDetails: function(){
alert('I am an ' + this.Manufacturer + ' ' + this.Model);
}
}, function(){
Console.log('C...
分类:
Web程序 时间:
2014-07-20 22:35:23
阅读次数:
312
1、字符串的表示形式(1)用字符数组存放一个字符串,然后输出该字符串。char string[] = "I am happy";printf("%s",string);(2)用字符指针指向一个字符串。char *string = "I am happy";printf("%s",string);2、...
分类:
编程语言 时间:
2014-07-20 08:16:23
阅读次数:
204
二分搜索实例 ,先排序,算出每一个石头的间隔,从l和最小间隔中二分找答案#include #include using namespace std;int a[50010],n,m;bool cmp(int a,int b){ return am) return 0; else retu...
分类:
其他好文 时间:
2014-07-19 22:27:54
阅读次数:
280
在C语言的基本数据类型中没有没有字符串变量,一般以字符数组的形式给出。1、字符串数组的初始化char c[] = {'I', ' ', 'a', 'm', 'h', 'a', 'p', 'p', 'y'};char c[] = "I am happy";区别:第一种方式字符串长度为10,内存中占10...
分类:
编程语言 时间:
2014-07-19 16:14:41
阅读次数:
210
Marbles
Input: standard input
Output: standard output
I have some (say, n) marbles (small glass balls) and I am going to buy some boxes to store them. The boxes are of two types:
Type 1: each ...
分类:
其他好文 时间:
2014-07-19 08:01:10
阅读次数:
264
【问题描述】 lqp在为出题而烦恼,他完全没有头绪,好烦啊… 他首先想到了整数拆分。整数拆分是个很有趣的问题。给你一个正整数N,对于N的一个整数拆分就是满足任意m>0,a1 ,a2 ,a3…am>0,且a1+a2+a3+…+am=N的一个有序集合。通过长时间的研究我们发现了计算对于N的整数拆分的.....
分类:
其他好文 时间:
2014-07-18 00:05:30
阅读次数:
171
描述 :根据身份证编号 查询归属地信息。
身份证实体类:
package org.wx.xhelper.model;
/**
* 身份证实体类
* @author wangxw
* @version 1.0
* @date Jul 11, 2014 10:46:54 AM
*/
public class IdCard {
// 身份证号码
private...