码迷,mamicode.com
首页 > 其他好文
LeetCode——Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. Note: A word is...
分类:其他好文   时间:2014-06-10 10:52:03    阅读次数:180
泛型集合的运用
/// /// DataSet装换为泛型集合 /// /// 泛型 /// DataSet /// 待转换数据表索引 /// 泛型集合 private static IList DataSetToIList(DataSet p_DataSet, in...
分类:其他好文   时间:2014-06-10 10:23:36    阅读次数:218
VS使用技巧
1、VS中的正则DCCircle *circle = new DCCircle(); => DCCircle *circle;NEW_OBJ(circle,DCCircle());\*{[:a_]*}:b*=:b*new:b+{.*\)}\*{[:a_]*}:b*=:b*new:b+{.*};*\1...
分类:其他好文   时间:2014-06-10 10:24:19    阅读次数:185
matlab padarray
功能:填充图像或填充数组使用:B = padarray(A,padsize,padval,direction)A表示输入图像,B是填充后的图像,padsize给出了填充的行数和列数,通常用[r c]来表示。padval和direction分别表示填充方法和方向。它们的具体值和描述如下: padva....
分类:其他好文   时间:2014-06-10 10:25:27    阅读次数:241
cocos2dx 的基本框架
AppDelegate.h#ifndef _APP_DELEGATE_H_#define _APP_DELEGATE_H_#include "cocos2d.h"USING_NS_CC;/**@brief The cocos2d Application.The reason for imp...
分类:其他好文   时间:2014-06-10 10:28:07    阅读次数:260
矩阵操作类
1 #ifndef __MAPLE_MATRIX_H__ 2 #define __MAPLE_MATRIX_H__ 3 4 #include "maple.h" 5 6 typedef struct MATRIX{ 7 union{ 8 ...
分类:其他好文   时间:2014-06-10 10:28:48    阅读次数:310
poj 2536 Gopher II (二分匹配)
Gopher IITime Limit:2000MSMemory Limit:65536KTotal Submissions:6345Accepted:2599DescriptionThe gopher family, having averted the canine threat, must f...
分类:其他好文   时间:2014-06-10 10:30:00    阅读次数:218
serialVersionUID的作用
把Java对象转换为字节序列的过程称为对象的序列化。把字节序列恢复为Java对象的过程称为对象的反序列化。Java的序列化机制是通过在运行时判断类的serialVersionUID来验证版本一致性的。在进行反序列化时,JVM会把传来的字节流中的serialVersionUID与本地相应实体(类)的s...
分类:其他好文   时间:2014-06-10 10:30:37    阅读次数:171
tomcat启动项目被重新加载,导致资源初始化两遍
之前没有遇到过这个问题,配了三天的项目了,惊人啊!!!各种怪问题全被我赶上了。真有种骂人的冲动。tomcat启动项目时,项目资源被加载两遍。原因:配置虚拟目录导致,项目被重新加载。 我们在Host标签下面配置了appBase="webapps",tomcat加载项目一次,在Context里...
分类:其他好文   时间:2014-06-10 10:31:12    阅读次数:342
[CC150] 八皇后问题
Write an algorithm to print all ways of arranging eight queens on an 8*8 chess board so that none of them share the same row, column or diagonal.思路:本质...
分类:其他好文   时间:2014-06-10 10:36:29    阅读次数:182
*zoj1483
【题解】:【代码】: 1 #include 2 #include 3 #include 4 #define LL long long 5 using namespace std; 6 7 bool dp[505][505];//已经用了i个人,已分配出j个任务 8 LL S[505]; 9 ...
分类:其他好文   时间:2014-06-10 10:39:06    阅读次数:159
*湖南师范大学第五届大学生计算机程序设计竞赛(AKing)
【比赛链接】:http://acm.hunnu.edu.cn/online/?action=problem&type=list&courseid=132A:跑得快计数程序【题解】:细心点,巧妙乘2处理四舍五入,简单模拟【代码】: 1 #include 2 #include 3 #include .....
分类:其他好文   时间:2014-06-10 10:40:22    阅读次数:227
leetcode--Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:其他好文   时间:2014-06-10 10:41:04    阅读次数:147
Leetcode OJ: Binary Tree Maximum Path Sum
Binary Tree Maximum Path SumGiven a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the be...
分类:其他好文   时间:2014-06-10 10:42:58    阅读次数:203
虚方法2014年6月10日01:50:45
什么是方法重写?方法重写是指子类继承父类后在子类中有一个与父类中某个方法签名一致,但方法内容可以重新定义的方法,并用override关键字修饰。只有用virtual、abstract、override修饰的方法在继承后子类可以重写。方法重写的意义:为所有子类定义了某种规范(某种必须有的规范),多态。...
分类:其他好文   时间:2014-06-10 10:44:11    阅读次数:198
阿里公共DNS 正式发布了
喜大普奔!集阿里巴巴集团众多优秀工程师开发维护的公共DNS---AliDNS终于上线啦!作为国内最大的互联网基础服务提供商,阿里巴巴在继承多年优秀技术的基础上,通过提供性能优异的公共DNS服务,为广大互联网用户提供最可靠的递归解决方案。AliDNS:稳定!快速!智能!是否还记得年初那场轰轰烈烈的DN...
分类:其他好文   时间:2014-06-10 11:21:15    阅读次数:186
VmwarePlayer+Ubuntu14 samba服务器搭建
Vmware Player添加网络连接, 选择“Host-only”:查看网卡ip=192.168.245.132:安装samba图形管理界面:#sudo apt-get install system-config-samba启动samba图形管理界面:#sudo system-config-sam...
分类:其他好文   时间:2014-06-10 11:21:57    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!