views:

70

answers:

1

Quick question of does Windows CE support hash tables? I have a program that I'm modifying and adding to a device that uses Windows CE and I was wondering if CE supported hash tables since it is used in the original software.

+1  A: 

link textI've been waiting to see if someone smarter than I had a different take on this question. No one seems to, so I'm going to assume everyone is confused like me. What exactly do you mean here?

According to Wikipedia:

A hash table or hash map is a data structure that uses a hash function to efficiently map certain identifiers or keys (e.g., person names) to associated values (e.g., their telephone numbers).

Which pretty much aligns with my understanding of them. So it's a data structure. An OS itself doesn't really have any concept of a hash table - the language you're writing in does. Every language that I'm aware of that supports building for Windows CE supports data structures (what kind of language wouldn't?).

So, I guess it comes back to you. What exactly do you mean by "if CE supported hash tables"?

ctacke
You basically answered the question. I've seen before code for software to go on a normal PC that did not work using Windows CE. I can't think of any of the examples right now but I was trying to find out if that would be a problem here. And from reading what you have typed, it won't. So thanks.
Bryan