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 661719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:17:55+00:00 2026-05-13T23:17:55+00:00

I’m looking to try to make an efficient delete method to work on a

  • 0

I’m looking to try to make an efficient delete method to work on a list. This situation is as follows:

Say for e.g. I have a (potentially) massive list of names:

Alex Smith
Anna Hobb
Bertie Blackman
Bill Clinton
David Smith
David Warner
George Jung
George Washington
William Wobbits

Lets say that this is a List<Person> with Person having properties FirstName and LastName. As in the example, there is the possibility for two people sharing same FirstName. What I need to do is go through the list and delete all Davids, for example.

I was looping through finding all davids, adding to a list DeletePerson, then looping through again for each DeletePerson and removing. I’m sure there would be a more efficient method? Efficiency isn’t critical in this app but it just seems a long winded way to do it, also I guess as after the letter D in the first name we know we won’t be adding any more to the DeletePerson list (assuming the list is sorted alphabetically)

Thanks!

  • 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-05-13T23:17:55+00:00Added an answer on May 13, 2026 at 11:17 pm

    For a concise approach, use RemoveAll.

    list.RemoveAll(person => person.FirstName == "David")
    

    for an (possibly? I haven’t run any benchmarks) efficient approach based on the order in a list, use List.RemoveRange — but you’ll have to find the indexes.

    class NameComparer : IComparer<Name>
    {
        public int Compare(Name x, Name y) { 
            return x.First.CompareTo(y.First); 
        }
    }
    ...
    ...
    var comparer = new NameComparer();
    var david = new Name { First = "David" };
    int guess = list.BinarySearch(david, comparer);
    int start, end;
    start = list.FindLastIndex(guess, person => person.First != "David") + 1;
    if (start > 0 && list[start].First == "David") {
        end = list.FindIndex(guess, person => person.First != "David");
        list.RemoveRange(start, end - start);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 355k
  • Answers 355k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Pull out all the open tags, push them into an… May 14, 2026 at 8:33 am
  • Editorial Team
    Editorial Team added an answer For security reasons, you cannot use AJAX to request a… May 14, 2026 at 8:33 am
  • Editorial Team
    Editorial Team added an answer This was a bizarre instance where A and B were… May 14, 2026 at 8:33 am

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I want use html5's new tag to play a wav file (currently only supported
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I've got a string that has curly quotes in it. I'd like to replace
In order to apply a triggered animation to all ToolTip s in my app,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.