Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if there is any structure in C# that can contain more than Int.MaxValue's restriction of 2,147,483,647 items, in case of really large sets of information. Would this have to be done with multi level arrays? Or could you create an array that has a maximum length of Long.MaxValue? If so, how?

share|improve this question
6  
If you're planning on creating arrays of this size, you should probably reconsider your approach. – Anthony -GISCOE- Sep 7 '10 at 12:53
1  
Looking to build the next Twitter? – BoltClock Sep 7 '10 at 12:54
Multilevel arrays could do the trick, but there's the risk of running out of memory. What do you need it for? – devnull Sep 7 '10 at 12:55
I was looking for a solution for holding the data of the Bible in a Array or list, but it looks like I wont be able to have all the information I wanted...because I needed literally a element for every greek word, every hebrew word, every word in english's strong number, if it's highlighted, etc – Richard J. Ross III Sep 7 '10 at 12:58
2  
A database solution is far more likely to be the way to go. For that matter, breaking things down to the word level is unusual (except for some Qaballic ways of studying the Hebrew), as you'll then lose the connection between the different verses, as the translations are not 1-1 on words, but are 1-1 on verses. – Jon Hanna Sep 7 '10 at 13:17

6 Answers

up vote 5 down vote accepted

It's been done, a sample BigArray<T> implementation is here.

share|improve this answer
Cool! Thanks for giving me the link to this! – Richard J. Ross III Sep 7 '10 at 13:07

The CLR currently has a limit of 2GB for any single object - so you'd have to build it out of multiple arrays, even for an element type of byte. That should be feasible though. Most of the normal collection interfaces would fail as they use int for the index, count etc.

I believe the CLR itself isn't restricted to an overall process limit which would prevent this - although you'd almost certainly want to be running on a 64-bit CLR and OS, of course.

share|improve this answer
1  
Which is all a bit odd since there's an overload of GetValue on System.Array that takes a long as index suggesting that you could have way larger arrays (msdn.microsoft.com/en-us/library/2zexc3z9.aspx) – Rune FS Sep 7 '10 at 13:02
1  
@Rune: Yes - I agree it's very odd. A bit of premature design, potentially. – Jon Skeet Sep 7 '10 at 13:04
1  
@LukeH - yes and that's the odd part when they don't add anything (except for misleading the unfortunate) why add them at all. Adding them when they would actually be supported would not be a breaking change. (Removing them no of course would) – Rune FS Sep 7 '10 at 14:20

You could only use an index based structure if the indexer was a long (int64) rather than an int32.

Even a List wouldn't work as the indexer is an int32.

share|improve this answer
Yep, that's what I thought...oh well, looks like I need to cut back on the information. – Richard J. Ross III Sep 7 '10 at 12:56

What is your requirement? It's hard to believe that an array with more elements than this is going to be the correct solution for any real-world problem, irrespective of whether it's legal or not. You may be thinking of a database here, whether persisted or in-memory. That's the standard means for organizing very large datasets.

share|improve this answer

Very little computers will have enough memory to hold such structure in-memory.

share|improve this answer
That's no longer true. – SLaks Sep 8 '10 at 14:14
@SLaks, then maybe I should add: very little computers will handle such structure in-memory. – Darin Dimitrov Sep 8 '10 at 14:23

ArrayList can contain more than Int.MaxValue.

share|improve this answer
7  
Nope, it cannot, because the constructor takes only an integer for capacity, and thus cannot be more than Int32.MaxValue – Richard J. Ross III Sep 7 '10 at 12:55
3  
@Richard: Your logic isn't completely sound, as the capacity increases automatically. You could provide int.MaxValue and then add more items. I'm pretty sure ArrayList would still fail, but not just because you couldn't specify the final capacity to the constructor as the initial capacity. – Jon Skeet Sep 7 '10 at 12:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.