Java Arrays.binarySearch 方法的 C 实现

发布于 2025-01-08 09:06:40 字数 334 浏览 1 评论 0 原文

我想实现 java Arrays.binarySearchbinarySearch(double[], double) 的方法,但采用 C 语言。 此处描述了类似的内容,但是对于字符数组,并且描述得不够好。我该怎么做呢?它是否已经在其他地方实现了(GSL 库等)?

I would like to implement the java Arrays.binarySearch method for binarySearch(double[], double), but in C language. Something similar is described here but for a character array, and it is not described well enough. How should I do it? Is it already implemented anywhere else (GSL library, etc)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

稚然 2025-01-15 09:06:40

如果您使用的是 C++ 编译器,请查看 std::binary_search

更新

另请查看 stdlib.h (ANSI C) b 搜索。由于您直接使用数组,我认为这是最适合这项工作的函数。

If you are using a C++ compiler, take a look at std::binary_search.

Update

Also take a look at stdlib.h (ANSI C) bsearch. Since you are working directly with arrays, I think this is the function that best fits the job.

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