Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8884897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:10:34+00:00 2026-06-14T21:10:34+00:00

I have a class public class Entity : IComparable<Entity> { public float Priority {

  • 0

I have a class

public class Entity : IComparable<Entity>
{

    public float Priority { get; set; }

{

I create a list and fill it with Y items that are in no particular order

list <Entity> = get_unorderd_list();

now i want to sort the list according to the Priority value , but I only care about getting the highest X items in the right order, for performance reasons I don’t want to use a regular .sort() method as X is a lot smaller then Y.

Should I write a custom sorting method? Or is there a way to do this?

edit:not talking about geting a single velue by using .max()

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T21:10:36+00:00Added an answer on June 14, 2026 at 9:10 pm

    Should I write a custom sorting method?

    I don’t know of a way of doing it easily from .NET itself. When I implemented sorting for Edulinq, I took this sort of approach – the whole ordering is a quick-sort, but I only sort as much as I need to in order to return the results so far.

    Now, that’s still a general approach – if you know how many results you need beforehand, you can probably do a lot better. You might want to build a heap-based solution, where you have a bounded heap (max size X) and then iterate over your input, adding values into your heap as you go. As soon as you’ve filled up the first X elements, you can start discarding new ones which are smaller than your smallest heap element, without even looking at the rest of the tree. For other elements, you perform the normal operations to insert the element, maintaining the ordering within the heap.

    See the Wikipedia article on binary heaps stored as arrays for more information about how you might structure your heap.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have public class Product: Entity { public IList<Item> Items { get; set;
I have a Java class that contains a list of another class. @Entity public
I have an entity similar to the below: public class Entity { public List<DateItem>
Imagine I have an entity: public class MyObject { public string Name { get;
I have entity class: public class Project { public virtual int Id { get;
I have a entity class public class Employee { public long Id { get;
I have this class public class Address:Entity { public virtual string Address1 { get;
I have an entity class that has an embedded object within it: @Entity public
I have class with back reference: public class Employee : Entity { private string
I have a Customer class defined like this: @Entity public class Customer { //...

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.