C# 对 2 个索引进行二分查找

发布于 2024-08-16 10:24:47 字数 336 浏览 7 评论 0原文

我有一个带有属性的对象; startIndex, endIndex

我可以通过实现以下内容来基于 startIndex 进行二分搜索:

        int IComparable.CompareTo(object obj)
        {
            Repeat r = (Repeat)obj;
            return this.startIndex.CompareTo(r.startIndex);
        }

但是,对于相同的重复对象,我想也分别对结束索引进行二分搜索。

我该怎么做?

谢谢。

I have an object with attributes ; startIndex, endIndex

I am able to do binary search based on startIndex by implementing the following :

        int IComparable.CompareTo(object obj)
        {
            Repeat r = (Repeat)obj;
            return this.startIndex.CompareTo(r.startIndex);
        }

However with the same Repeat Object I d like to do binary search also on the end index separately.

How can i do this ?

Thanks.

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

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

发布评论

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

评论(1

划一舟意中人 2024-08-23 10:24:47

如果您使用 Array.BinarySearch()List.BinarySearch() 方法,则可以使用采用 IComparer 的重载代码> 或 IComparer。然后,您可以在单独的类中实现比较语义,并在需要进行搜索时将其传入。

If you're using the Array.BinarySearch() or List<T>.BinarySearch() methods, you can use the overload that takes an IComparer or IComparer<T>. Then you can implement the comparison semantics in a separate class and pass it in when you want to do a search.

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