http://www.cnblogs.com/MaxWoods/p/3304954.html 摘自RemObjects Wiki 本文提供RemObjects Pascal Script的整体概要并演示如何创建一些简单的脚本. Pascal Script包括两个不同部分: 编译器 (uPSCompi ...
分类:
其他好文 时间:
2016-11-03 00:00:48
阅读次数:
478
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to us ...
分类:
编程语言 时间:
2016-11-02 00:37:38
阅读次数:
216
Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return 用的比价暴力的方法, 也是最快的。 ...
分类:
编程语言 时间:
2016-11-02 00:19:36
阅读次数:
223
arxiv上放出的物体检测的文章,在Pascal voc数据集上排第二。源码也已放出(https://github.com/sanghoon/pva-faster-rcnn),又可以慢慢把玩了。这篇文章遵循faster-rcnn“CNN feature extraction + region pro ...
分类:
Web程序 时间:
2016-10-27 20:10:37
阅读次数:
1416
1.Java 2.C 3.C++ 4.C# 5.python 6.JS 7.PHP 9.VB.NET 10.perl 11.OC 12.Ruby 13.vb 14.Delphi 15.Pascal 16.Go 17.R 18.SQL 19.HTML 20.Lua ...
分类:
编程语言 时间:
2016-10-27 07:51:45
阅读次数:
229
快速排序=挖坑填数+分治法 【举例】 66 13 51 76 81 26 57 69 2323 13 51 57 26 66 81 69 76 【Pascal版】 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 procedure Qsort(l,r:longint); va ...
分类:
编程语言 时间:
2016-10-20 15:19:10
阅读次数:
330
第十六届全国青少年信息学奥林匹克联赛初赛试题 ( 普及组 Pascal 语言 两小时完成) ●● 全部试题答案均要求写在答卷纸上,写在试卷纸上一律无效 ●● 一. 单项选择题(共20题,每题1.5分,共计30分。每题有且仅有一个正确答案。) 1.2E+03表示( )。A.2.03 B.5 C.8 D ...
分类:
其他好文 时间:
2016-10-20 14:50:27
阅读次数:
201
Static ListStatic List is the smart implementation of list data structure for those languages that have no pointer or similar function, such as Pascal ...
分类:
其他好文 时间:
2016-10-19 20:17:00
阅读次数:
173
快速排序=挖坑填数+分治法 【举例】 66 13 51 76 81 26 57 69 2323 13 51 57 26 66 81 69 76 【Pascal版】 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 procedure Qsort(l,r:longint); va ...
分类:
编程语言 时间:
2016-10-19 13:56:52
阅读次数:
157
大体上,可以将程序设计语言可以分为两类:编译型语言和解释型语言。 编译型语言 很多传统的程序设计语言,例如Fortran、Ada、Pascal、C、C++和Java,都是编译型语言。这类语言需要预先将我们写好的源代码(source code)转换成目标代码(object code),这个过程被称作“ ...
分类:
编程语言 时间:
2016-10-17 09:11:35
阅读次数:
122