MsgBox http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_msgbox ExpandConstant http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_expandc
转载 2017-02-24 15:02:00
320阅读
2评论
pascal指针分类: delphi相关2007-09-21 13:28 222人阅读 评论(0) 收藏 举报大家都认为,C语言之所以强大,以针的。从最初
转载 2023-07-20 11:35:06
52阅读
工具: lazarus, codetyphon, fpcupdeluxe大提纲https://dubst3pp4.github.io/post/2017-10-03-why-i-use-object-pascal/#fn:3学习完成https://wiki.freepascal.org/Basic_Pascal_Tutorial 正在学习, 4.4 节https://castle-engine.i
原创 2022-05-05 23:02:34
731阅读
https://freepascal.org/ free pascal OPEN SOURCE COMPILER FOR PASCAL AND OBJECT PASCAL https://freepascal.org/ free pascal OPEN SOURCE COMPILER FOR PAS
转载 2017-07-28 07:49:00
127阅读
2评论
API Index http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/idx.html 专业术语 Delphi "Delphi 百科" PASCAL
转载 2017-03-08 14:21:00
143阅读
2评论
Installpip install pascal-voc-writerUsefrom pascal_voc_writer import Writer# Writer(path, width, height)writer = Writer('path/to/img.jpg', 800, 400)# ::addObject(name, xmin, ymin, xmax, ymax)writer.addObject('cat', 100, 100, 200, 200)# :
原创 2021-08-13 09:33:14
483阅读
题意走迷宫,要绕开障碍,走过的就不能再走,求有多少种不同的方法可以到达终点分析我们可以用深搜来做,输入时把障碍的坐标记录下来constdx:array[1..4]of longint=(0,0,1,-1);dy:array[1..4]of longint=(1,-1,...
转载 2017-01-13 15:26:00
51阅读
2评论
vector<vector<int>> generate(int num) { vector<vector<int>> result; vector<int> array; for (int i = 1; i <= num; i++) { for (int j = i - 2; j > 0; j--
i++
原创 2022-01-17 17:37:40
90阅读
Free pascal 本身支持多种dialect方言(或者叫mode), 支持 objfpc/delphi/delphiunicode, 还有 tp/iso 等不常用的方言. 在一个项目中, dialect 是 per unit 设定的. 不同方言支持的语法有些许区别, 主要不同体现在: stri
原创 2022-05-05 23:24:43
177阅读
题意把总分排序分析先按总分从高到低排序,如果两个同学总分相同,再按语文成绩从高到低排序,如果两个同学总分和语文成绩都相同,那么规定学号小的同学 排在前面vara,t,p:array[0..300]of longint;n,i,x,y,j:longint;procedu...
转载 2017-01-13 21:35:00
65阅读
2评论
GivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]...
转载 2014-11-13 18:36:00
70阅读
我用二项式解决了这个,其中溢出是用java的BigInteger解决的。但是看到大多数人是用定义解决的,计算量就不大,不会造成溢出leetcode:https://oj.leetcode.com/problems/pascals-triangle/Pascal's TriangleGivennumR...
原创 2021-08-07 11:47:00
87阅读
         
原创 2021-07-09 09:47:12
96阅读
1636: Pascal山脉 题目描述 小卡卡顺着老者所指的方向,来到了Pascal神峰的顶峰。老者告诉小卡卡,Pascal山脉有很多座山, 都排在一条直线上,每座山都有不同的高度。Pascal山的山顶有一个神奇的洞穴,进入这个洞穴后,你将会到达这座山前方的另一座山,更加神奇的是,你到达的山一定比他
转载 2017-11-03 00:15:00
63阅读
例子:property  Color: TColor read GetColor write SetColor stored IsColorStored; 定义方式:property 属性名:属性数据类型   read子句(1)  write子句(2)  其他子句(3); (1)read子句用于来读取属性的方法或字段.如果指定的是字段(Fiel
原创 2007-08-13 10:48:13
656阅读
1评论
1. 概述Pascal VOC2012数据集主要是针对视觉任务中监督学习提供标签数据,它有20个类别:Person: personAnimal: bird, cat, cow, dog, horse, sheepVehicle: aeroplane, bicycle, boat, bus, car, motorbike, trainIndoor: bottle, chair, di...
转载 2021-06-18 15:57:12
2601阅读
PASCAL 的开源工具:1)free pascal代码编译器 http://www.freepascal.org/2)lazarus图形界面开发工具 http://www.lazarus-ide.org/ 类似 DELPHI学习资料:参考百度文库。
原创 2021-07-30 10:28:27
336阅读
GivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]...
转载 2015-04-13 11:19:00
53阅读
2评论
LeetCode解题之Pascal’s Triangle 原题 要求得到一个n行的杨辉三角。 注意点: 无 样例: 输入: numRows = 5 输出: [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 解题思路 杨辉三角的特点是每一行的第一和最后一个
转载 2018-04-07 19:21:00
81阅读
2评论
pascalPascal matrixSyntaxP = pascal(n)P = pascal(n,1)P = pascal(n,2)P = pascal(___,classname)DescriptionP = pascal(n) returns a Pascal’s Matrix of order n. P is a symmetric positive de...
原创 2021-08-20 13:57:14
304阅读
  • 1
  • 2
  • 3
  • 4
  • 5