码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
Delphi 类方法和普通方法的区别 .
//类声明 TMyClass = class public class procedure MyProc; //类方式 constructor Create; //Create 也是类方法 end;var Form1: TForm1;implementation{$R *.dfm}{ TMyClas...
分类:其他好文   时间:2014-07-22 23:06:33    阅读次数:321
测试2
公式测试$$\begin{bmatrix}0 & \cdots & 0 \\ \vdots & \ddots & \vdots \\ 0 & \cdots & 0 \end{bmatrix}$$
分类:其他好文   时间:2014-05-01 14:50:26    阅读次数:274
RUBY的类封装,继承,多态简单演示
class Person def initialize(name,age=18) @name=name @age=age @motherland="China" end def talk puts "my name is " ...
分类:其他好文   时间:2014-05-01 12:08:53    阅读次数:297
自己动手实现简单的Vector
看到今天,终于自己动手写了一个自己的vector,我这个版本的vector只有vector主要的一些操作,包括原版vector的所有构造函数,begin(),end(),size(),capacity(),empty(),erase(),clear(),pop_back,push_back(),重载...
分类:其他好文   时间:2014-05-01 10:51:13    阅读次数:402
six solutions to a single symmetrical problem
Problem description:given a string, find the longest palindrome string in itSolution:1.brute force O(n^3)just enumerate start and end of the substring...
分类:其他好文   时间:2014-04-29 17:22:46    阅读次数:308
10-Objective-C特有语法:Category、类对象、description、SEL、NSLog输出增强
一、 分类-Category1. 基本用途OC中如何在不改变原来类模型的前提下,给类扩充一些方法?有2种方式 1>.继承 2>.分类(Category)2. 格式分类的声明@interface 类名 (分类名称)// 方法声明@end分类的实现@implementation 类名 (分类名称)/.....
分类:其他好文   时间:2014-04-29 11:23:47    阅读次数:384
C++ - Vector 计算 均值(mean) 和 方差(variance)
Vector 计算 均值(mean) 和 方差(variance) 本文地址: http://blog.csdn.net/caroline_wendy vector的数组, 计算均值和方差的最简方法. 代码: double sum = std::accumulate(std::begin(resultSet), std::end(resultSet), 0.0);...
分类:编程语言   时间:2014-04-28 10:44:42    阅读次数:587
Hdu 1042 N! (高精度数)
Problem Description Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!   Input One N in one line, process to the end of file.   Output For each N, output N! i...
分类:其他好文   时间:2014-04-28 10:36:41    阅读次数:341
CallableStatement简单使用
直接上存储过程、函数 --执行不带参数但带返回值的存储过程 CREATE OR REPLACE PROCEDURE proc_getUserCount(v_totalCount OUT NUMBER) AS BEGIN SELECT COUNT(*) INTO v_totalCount FROM vote_user; END; --测试不带参数但带返回值的存储过程 DECLARE v_t...
分类:其他好文   时间:2014-04-28 10:25:43    阅读次数:461
poj 2947 Widget Factory(模7环上的高斯消元)
http://poj.org/problem?id=2947 大致题意: 有n种装饰物,m个已知条件,每个已知条件的描述如下: p start end a1,a2......ap (1 第一行表示从星期start到星期end一共生产了p件装饰物(工作的天数为end-start+1+7*x,加7*x是因为它可能生产很多周),第二行表示这p件装饰物的种类(可能出现相同的种类,即ai=aj)。...
分类:其他好文   时间:2014-04-27 21:12:04    阅读次数:339
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!