2
votes
1answer
35 views
How to find common phrases in a large body of text
Hi,
I'm working on a project at the moment where I need to pick out the most common phrases in a huge body of text. For example say we have three sentences like the following:
The dog jumped over …
2
votes
4answers
52 views
Need advice in designing tables in SQL-Server
Hello all!
I have a quote that contains items (store in table QuoteItem):
QuoteItemId, QuoteId, ItemId, Quantity etc.
Now, I need to be able to create a group of chosen items in the quote and apply …
0
votes
3answers
58 views
Sorting technique followed by TreeMap?
Can anyone explain how the data are sorted in a TreeMap automatically when we try to print the data stored in them?
7
votes
6answers
201 views
Data structure for storing thousands of vectors
I have upto 10,000 randomly positioned points in a space and i need to be able to tell which the cursor is closest to at any given time. To add some context, the points are in the form of a vector …
1
vote
4answers
92 views
A recursive method to find depth of a any(not necessarily complete) Binary tree
I am trying to compute the depth of any(not necessarily complete) BST in O(log n) time recursively.
This is the algorithm I came up with:
//max() - returns the max of two numbers
int depth(root)
{
…
1
vote
4answers
51 views
C# Hierarchical Categories structure
Hello Guys
I am developing a small C# windows application and in the need to Hierarchical Categories structure design. I am cuurrently using a single layer Categories from the DB i.e. no child …
0
votes
3answers
72 views
Best data structure to retrieve by max values and ID?
I have quite a big amount of fixed size records. Each record has lots of fields, ID and Value are among them. I am wondering what kind of data structure would be best so that I can
locate a record …
0
votes
2answers
63 views
I have same struct question for int array..
paxdiablo gave the previous answer for it working with char array.. can I know how to work with int array for the same below code?
LIke:
struct encode {
int code[MAX]; //instead char code[MAX]
…
0
votes
4answers
88 views
question on struct with char array
Below is my code snippet
struct encode
{
char code[MAX];
}a[10];
int main()
{
char x[]={'3','0','2','5','9','3','1'};
for(i=0;i<1;i++)
{
printf("%c",x[i]);
//This will printout …
2
votes
4answers
178 views
Quickly Determining the Position of Data in an Array
I have a data structure as the image below illustrates. I need to quickly figure out the index of the cells to the right or left of the highlighted cell group.
You can see in the code below I am …
2
votes
4answers
75 views
When is a ConcurrentSkipListSet useful?
I just saw this data-structure on the Java 6 API and I'm curious about when it would be an useful resource. I'm studying for the scjp exam and I don't see it covered on Kathy Sierra's book, even …
3
votes
3answers
143 views
What bookkeeping data does a Delphi dynamic array contain?
Here's a simple program to check memory allocation. Checking before and after values with Task Manager suggests that each dynamic array takes up 20 bytes of memory at size = 1. The element size is …
5
votes
6answers
86 views
Appropriate data structure for table that uses ranges
I have a table that looks like this:
<22 23-27
8-10 1.3 1.8
11-13 2.2 2.8
14-16 3.2 3.8
and it goes on. So I'd like to lookup a value like this:
lookup(11,25)
and get the …
10
votes
2answers
196 views
Why doesn’t the .Net framework have a priority queue class?
There are some threads on Stack Overflow dealing with implementing priority queues in .Net and C#.
My issue is of a more basic nature: Why isn't there a priority queue out of the box in the .Net …
3
votes
3answers
126 views
Is there a way to produce a binary diff on two byte arrays in c# .net?
I am trying to compare two byte arrays in memory and produce a data structure to hold the differences so that with byte array B and the data structure holding the differences it is possible to …
