计划中的时间安排

发布于 2024-11-08 02:00:53 字数 466 浏览 1 评论 0原文

我目前正在解决 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

围归者 2024-11-15 02:00:53

只需将您想要计时的整个部分包含在 time 表达式中(这适用于大多数实现,包括 Racket):

(time (rest-of-program))

如果您愿意,您还可以使用 Unix 命令 time在 Linux/OSX/BSD/等上,例如

time ./my_program

Just enclose the whole part you want to time in the time expression (this works in most implementations, including Racket):

(time (rest-of-program))

You can also use the Unix command time if you're on Linux/OSX/BSD/etc., e.g.

time ./my_program
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文