1
vote
0answers
11 views
csv to sparse matrix in python
I have a big csv file which lists connections between nodes in a graph. example:
0001,95784
0001,98743
0002,00082
0002,00091
So this means that node id 0001 is connected to node 95784 and 98743 …
1
vote
6answers
117 views
C# Priority Queue
I'm looking for a priority queue with an interface like this:
class PriorityQueue<T>
{
public void Enqueue(T item, int priority)
{
}
public T Dequeue()
{
}
}
All the …
1
vote
5answers
85 views
Ordered queue with two indices
Hi
I need an ordered queue where objects would be ordered by primary and secondary value.
class Object
{
int PrimaryValue;
int SecondaryValue;
}
The position of an Object in the queue must be …
8
votes
7answers
230 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 …
2
votes
3answers
58 views
Inserting lines of pixels into an image quickly
My current dilemma is as follows:
I have a 2550x3300 tiff. At certain (variable) points in my tiff I need to insert a line of pixels from elsewhere in the tiff. e.g. I need to insert 12 copies in a …
0
votes
3answers
49 views
Update data in txt/xml file in C#
Hi,
I have a txt file with some data that looks like this:
a:1(2,3) 55(33,45,67)
b:2(1,33,456) 4(123,12444)
which means that word "a" appear in text 1 in places 2 and 3 and in text 55 in places …
3
votes
1answer
54 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
63 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 …
1
vote
4answers
98 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)
{
…
0
votes
3answers
63 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?
2
votes
4answers
184 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 …
5
votes
6answers
87 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 …
0
votes
3answers
76 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 …
1
vote
4answers
55 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
4answers
89 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 …
