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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:14:37+00:00 2026-06-16T17:14:37+00:00

I have an array of float elements and I’m trying to remove elements that

  • 0

I have an array of float elements and I’m trying to remove elements that are close to each other.
I.e. if there are two elements less than 0.4 apart (e.g. 15.1 and 15.3), I want to remove the second one. The 0.4 should be the input parameter for the algorithm.

The array is already sorted in a specific order (not ascending/descending) and I need to preserve that order.

  • 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-16T17:14:38+00:00Added an answer on June 16, 2026 at 5:14 pm

    I have created an ApproximateFloatComparer class as follows:

    public class ApproximateFloatComparer : IComparer<float>
    {
        public float Range { get; set; }
    
        public ApproximateFloatComparer(float range)
        {
            this.Range = range;
        }
    
        public int Compare(float x, float y)
        {
            if (x - this.Range < y && x + this.Range > y)
                return 0;
            else return x.CompareTo(y);
        }
    }
    

    Then create a method to deduplicate:

    public static List<float> Deduplicate(List<float> floats, float range)
    {
        var dedup = new List<float>();
        var comparer = new ApproximateFloatComparer(range);
        foreach (var @float in floats)
            if (!dedup.Any(f => comparer.Compare(f, @float) == 0))
                dedup.Add(@float);
        return dedup;
    }
    

    Then combine it all:

    var floats = new List<float>() { 5, 8, 2, 13, 6, 9, 4, 3, 2.1f, 8.6f, 2.2f };
    floats = Deduplicate(floats, 0.4f);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say that i have the following array : float QuadVertices[4 * 2]; float
I have an int and float array each of length 220 million (fixed). Now,
So, lets say I have 100,000 float arrays with 100 elements each. I need
I have two snippets of code that tries to convert a float list to
I have a following code that transforms each element of an array into sum
If I have this float array declaration: float tables[10]; How can I change the
I have some Thread count pCount and I have some float[] array. I want
I have an int and float array of length 220 million (fixed). Now, I
I have a Java array defined already e.g. float[] values = new float[3]; I
I have a C++ code which has 3 array declarations. float A[NUM]; float B[NUM];

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.