计划中的时间安排
我目前正在解决 Project Euler's 问题,我正在用 C# 和 Scheme 解决它们(Project Euler's 问题) ="http://racket-lang.org/" rel="noreferrer">Racket 实现)。我了解 C#,但我正在学习计划。
现在,除了获得问题的正确结果之外,我还想提出我能想到的最快的解决方案。为此,在 C# 中,我使用 StopWatch 来测量我的代码的性能。是否有类似的方案库/功能来计时代码执行?
I'm currently going through the Project Euler's problems and I'm solving them both in C# and Scheme (the Racket implementation). I know C# but I'm learning Scheme as I go along.
Now, on top of having the correct results for the problems, I like to come up with the fastest possible solution I can think of. To that effect, in C# I use StopWatch to measure the performance of my code. Is there a similar Scheme library / functionality to time code execution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将您想要计时的整个部分包含在
time
表达式中(这适用于大多数实现,包括 Racket):如果您愿意,您还可以使用 Unix 命令
time
在 Linux/OSX/BSD/等上,例如Just enclose the whole part you want to time in the
time
expression (this works in most implementations, including Racket):You can also use the Unix command
time
if you're on Linux/OSX/BSD/etc., e.g.