We're a community of 1.1M IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,080,661 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

Comparing items in List of int arrays

Hello,

My first post here. I have a problem that I'm sure is simple to solve but haven't yet managed to find a solution, hopefully one of you can help me. :-)

I have a list of int arrays which I have filled with numbers.

List<int[]> Numbers = new List<int[]>();    
            Numbers.Add(new int[] { 1, 2, 3, 4, 5, 6, 7, 8 });
            Numbers.Add(new int[] { 1, 2, 3, 4, 5, 6, 7, 8 });
            Numbers.Add(new int[] { 65, 2, 7, 4, 2, 2, 4, 9 });
            Numbers.Add(new int[] { 45, 2, 23, 4, 13, 6, 7, 8 });
            Numbers.Add(new int[] { 1, 5, 876, 4, 5, 67, 7, 8 });

I then pass this list to a function that checks if there are any duplicate items in the Numbers List and removes them. But it doesn't work :-(

public void RemoveDuplicates(List<int[]> Nums)
    for (int i = 0; i <= Nums.Count - 1; i++)
        {
            for (int n = 1; n <= Nums.Count-1; n++)
            {
                if (Nums[i].SequenceEqual(Nums[n]))
                {
                    Nums.RemoveAt(n);
                }
            }
        }
    }

I'm sure it's a simple mistake I'm making but I can't work it out. Any ideas?

Thanks!

3
Contributors
7
Replies
7 Hours
Discussion Span
1 Year Ago
Last Updated
8
Views
daringone
Newbie Poster
4 posts since Jun 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

What you are passing is is entire array not elements of those arrays
Click Here
And then when you do Count -1 you have removed last Array from the count

Attachments screen.jpg 16.69KB
Michael27
Junior Poster in Training
94 posts since Jul 2010
Reputation Points: 23
Solved Threads: 7
Skill Endorsements: 2

Hi, I pass the whole array because that's what I want to check, I want to see if one array in the list is the same as another array in the list, I don't want to check the individual elements of each array though, just the array as a whole.

If I take away the Count-1 I get an Array out of bounds error. not sure why but the -1 seemed to solve it.

Thank you for your help :)

daringone
Newbie Poster
4 posts since Jun 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Count is 5 because you have 5 arrays with 8 elements in it, with Count -1 you get 4, which means you only access 4 arrays with 8 elements in it, the last 5th one will be left out.
I know what and why is Count -1 is used for.

Can you use a List<T> instead (already has Contains method)?
http://stackoverflow.com/questions/649444/testing-equality-of-arrays-in-c-sharp

Michael27
Junior Poster in Training
94 posts since Jul 2010
Reputation Points: 23
Solved Threads: 7
Skill Endorsements: 2

You cannot remove items while inisde loops, nor for or foreach loop.
You will have to create a new list, where you will put numbers to delete, or indexes of them, and then add the duplicates inside out it. After this is done, you will have to do another loop through this new list and remove numbers from original list.

Mitja Bonca
Posting Maven
2,561 posts since May 2009
Reputation Points: 642
Solved Threads: 486
Skill Endorsements: 15

Thanks Mitja, and Michael. I am going through the various options you have put forward.

Mitja, If I can't remove items while in a loop how do I remove the items from the list in a loop as you have suggested, once I have made a new list?

daringone
Newbie Poster
4 posts since Jun 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

Hi again,

I've got it working now :) I Followed Michaels advice and am now using a list of lists.

Thanks again :)

daringone
Newbie Poster
4 posts since Jun 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

@Mitja I already knew you can't remove items while inside foreach, but why not inside for loop?

Michael27
Junior Poster in Training
94 posts since Jul 2010
Reputation Points: 23
Solved Threads: 7
Skill Endorsements: 2

This article has been dead for over three months: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page generated in 0.0769 seconds using 2.76MB