1
vote
1answer
44 views

SPOJ Can you answer these queries I

I am trying to solve this problem on SPOJ. I found this problem in the segment tree section, so I am pretty sure that there could be some possible solution that uses segment tree. But I am unable to ...
0
votes
5answers
126 views

why is the following code wrong?

I recently faced an interview question on what's the hidden problem with the following code. I was unable to detect it .Can anyone help? #include<stdio.h> int main(void) { char buff[10]; ...
2
votes
3answers
79 views

find unique values from a large file

I have a large file (say 10 terabytes) with stream of MD5 hashes (which contains duplicates), I am given a memory of 10MB(very limited) and unlimited hard disc space. Find all the unique ...
-4
votes
2answers
53 views

Calculation of factorial of large numbers in c using arrays

I am trying to calculate factorial of very large numbers in c like 100!..by dynamically allocating memory after calculating the number of digits in factorial: My code is: int main() { int ...
3
votes
2answers
104 views

Writing strend(s, t) (check if `s` ends with `t`) using pointers

I am writing an implementation of strend(s, t), which checks if a string s ends with string t. Example, if - char s[] = "abcdefoo"; char t[] = "foo"; then, strend(s, t) is true because "abcdefoo" ...
0
votes
4answers
46 views

Avoiding Repeated seed generation using srand()

I have a typical situation where I need to generate a batch of random numbers. I have used a loop which generates 100 random numbers on each pass: for(int i=0; i<npasses; i++) { ...
0
votes
1answer
53 views

Replace all spaces in a string with '%20'. Assume that the string has sufficient space at the end of the string to hold the additional characters [closed]

The question is as the titles, and I have write a code to implement this function. The code is as below, but the sentence: *(str+length_copy-1+tail_space_num) = *(str+length_copy-1); cause an error. ...
1
vote
1answer
94 views

2D perlin noise in C

I followed this tutorial. When I implement it in my code (Raytracing), and apply it on a sphere, I get a uni-color sphere, with one stripe of darker pixel on it. When I change the random float ...
-8
votes
0answers
49 views

Assign an array to M parts [closed]

I have an array A[N] with N elements,now i want to assign these N elements to M parts,how to assign these element to fulfill that maxest sum and minest sum of M parts are nearest
-4
votes
1answer
73 views

Measure time complexity of a program in any programming language

I am searching for a standard way to identify running time complexity of a program. As described here, I am not searching for a solution for analyzing the same by looking at code, rather than through ...
0
votes
1answer
54 views

one-producer and multiple consumer : should I use N semaphore if there are N consumers and N types of products

I have a program with 1 producer thread and N consumer threads. There are N types of producet, so I set up N FIFO queues(products should be delivered to the consumer in sequence). like: FIFO_queue_t* ...
1
vote
3answers
100 views

Why did this prime factorisation algorithm give the correct answer even though there is a flaw?

The problem stated to me was this: "What is the largest prime factor of the number 600851475143 ?" The program is used to find the answer was exactly this using C: #include<math.h> // for ...
0
votes
2answers
45 views

Formatting a string based on Input and predefined values

I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z. Same time i have a predefined template as: I have $A,$B,$C..... ...
2
votes
1answer
88 views

Map the 32bit integers into 32 bins, with 1,2,4..2^31 consecutive integers per bin

For a 32 bit integer, divide it into 32 bins of consecutive integers such that there are twice as many integers in each successive bin. The first bin contains 0, the second 0..1, etc up to 0..2^31-1. ...
5
votes
1answer
69 views

How to order/sort a 2D table of dependencies

I'm curious if there is some higher level theory/approaches/algorithm to solving this problem I have. I'm working on a network routing problem (a proprietary radio network). By way of example, I have ...
-10
votes
0answers
97 views

A* single source - all destinations [closed]

1 2 3 4 5 6 7 8 s --------------- 1| c * * * * * * * 2| * * * * * * f * 3| * * a * e * * * 4| * * * * * * * * 5| * * b * y * z * 6| * * * * * * * * 7| * * * * * * * * 8| * * * * * * * * 9| * d * * * ...
0
votes
2answers
49 views

source code snippets for creating a lookup table with insert, delete and search function

I want to construct a table with linux C each table entry has 3 fields: 1 ip/port pair, 2 a FIFO queue pointer, 3 a thread id the first entry ip/port pair is also a key for search, for this ...
3
votes
3answers
93 views

How to delete all nodes of same value from linklist/Queue

I have been trying hard to resolve this however yet not succeed I have data structs as follow (which actually is very complex I just simplifies for discussion) : typedef struct node{ struct node* ...
-5
votes
2answers
71 views

How to remove blank spaces from buffer [closed]

How to remove blank spaces from buffer in O(1) space complexity and O(n) time complexity? What do we mean by buffer in this question? will we consider it as a stream of characters or string? ...
2
votes
2answers
106 views

Breadth First Search in O(log n)

Is it possible to find the destination from a source in O(log n) time using BFS (using min vertices traversed) in an undirected graph with loop and negative edges? For ex: You are given a simple ...
0
votes
2answers
139 views

Algorithm: maximizing the output of a pastry shop. How to without the greedy algorithm? [closed]

Here the problem: you got a list of ingredients (assuming their value unitary) with their respective quantities, and a list of products. Each product got a price and the recipe which contain ...
0
votes
1answer
39 views

Algorithm for drawing bitmap-style font into display buffer with C

For an 8-bit embedded system that has a small monochrome LCD with black/white pixels (not grayscale), I need an efficient way of storing and displaying fonts. I will probably choose two fixed-width ...
1
vote
3answers
101 views

Data Compression Algorithms

I was wondering if anyone has a list of data compression algorithms. I know basically nothing about data compression and I was hoping to learn more about different algorithms and see which ones are ...
-5
votes
0answers
62 views

Show that it is undecidable if two TMs accept the same language [closed]

I was asked this question at an interview, and couldn't answer it, and would like to know how it is 'shown'. This is NOT HW!
4
votes
3answers
81 views

Parallelize Fibonacci sequence generator

I'm learning about parallelization and in one exercise I'm given a couple of algorithms that I should improve in performance. One of them is a Fibonacci sequence generator: array[0] = 0; array[1] = ...
1
vote
2answers
96 views

Recursion, possible error in algo

i am doing one of the simple programin C, sum of digits of 5 digit number.Though i had done it using a simple function but i need to do it with recursion also.I had read many solution on net regarding ...
1
vote
0answers
42 views

Standard algorithm for WEP key generator 64-bit

I have downloaded the following function from the internet. It's a WEP Key generator for 64-bit from a giving passphrase. and I m wondering if a such algorithm is a standard algorithm? or it's an ...
0
votes
1answer
33 views

reversing a linked list in groups of a given size

I am solving a problem of reversing a linked list in groups of given size and the algorithm i am using is as follows: 1) Reverse the first sub-list of size k. While reversing i kept the track of the ...
0
votes
5answers
132 views

C - reverse a number

I am coding in C on linux, and I need to reverse a number. (EG: 12345 would turn into 54321), I was going to just convert it into a string using itoa and then reverse that, as it's probably a lot ...
0
votes
2answers
87 views

Total number of ways to write a positive integer as the sum of powers of 2 in efficient time

I've been looking at Number of ways to write n as a sum of powers of 2 and it works just fine, but I was wondering how to improve the run time efficiency of that algorithm. It fails to compute ...
0
votes
2answers
74 views

My concern about getting rid of loop from single link list

I know it is a FAQ and have a lot of answers such as Interview: Remove Loop in linked list - Java. but I have the following concerns. If I am wrong, please point out and would you please direct me ...
0
votes
2answers
71 views

Toom-Cook multiplication algorithm implementation

I have a task to implement Toom-Cook 3-way multiplication algorithm. I'm following description on wikipedia http://en.wikipedia.org/wiki/Toom%E2%80%93Cook_multiplication , and I managed to store two ...
-8
votes
0answers
91 views

Getting a path for dijkstra [closed]

I implemented a Dijkstra's algorithm. Now I have all Distances from source. I also have a second parameter, target. How could I get the shortest path from source to target when I have distances? I was ...
0
votes
4answers
140 views

hash function that compresses 20 bits input in to 5 bits output

I need to come up with an algorithm for a hash function that take 20 bits long input and the output should be only a 5 bits long. I have searched in the internet for the last week and I couldn't find ...
-9
votes
2answers
97 views

How to generate all combination [closed]

The instance of the problem: We want to put 5 eggs in 3 buckets. Please find all combination.(without order) The solution of the instance: 1+1+3 1+2+2 Do you know some algorithm to solve the ...
-1
votes
1answer
66 views

hashing algorithm with table

I am implementing this hashing algorithm where a randomly generated string is stored according to its ascii value. The initial storage is a string array and when an element is already used up a ...
0
votes
5answers
217 views

Fast algorithm for finding the nearest smaller prime number

eg:- If the given number is 10 we have to return 7 (as it the nearest smaller prime number) The way I could think of is this:- Mainloop: Test whether the given number is prime or not (by applying a ...
0
votes
0answers
64 views

Segmentation fault for prime generator

I am working on a small piece of code that generates all the primes between two numbers for a set. I decided to use a sieve (and i know theres probably a much more efficient way to do what I want than ...
-1
votes
1answer
67 views

Find all the combinations for n sets of k elements

I have an array of structs typedef struct st1 { double start; double step; double stop; } ST; I need to find all the posible combinations of those Optimization parameters going from start to ...
1
vote
1answer
58 views

synthetic division algorithm to deflate conjugate pairs

I am implementing a synthetic division algorithm in C as follows: int deflate( double r, double im, double* poly, int n ) { int retval; int i; if( im == 0 ) { if( n < 1 ) { ...
1
vote
2answers
104 views

Remove duplicate elements from a sorted linked list

I am attempting a C program to remove duplicates from a Sorted linked list and i am using a simple concept of traversing the list from the start node. While traversing, compare each node with its next ...
-3
votes
0answers
28 views

Is exposing the item.h functions to the main correct?

As title I have a separate modules for the item manipulation; Is considerate correct to #include those modules inside the main module? The program is a LIFO/FIFO queue implemented as ADT species I
3
votes
2answers
172 views

Graph Paths Abstraction Algorithm Needed

I have a data structure holding a graph like the one in the following picture: In this tree, a node can have any number of unique children from the levels below it. In tree in the picture represents ...
-2
votes
2answers
70 views

The best algorithm to simulate Block Drop

Here is a demo image : There are 8x8 blocks with some random red blocks in it. When user select them out, all the blocks above them will drop. I want to find a best way to simulate this with minor ...
-1
votes
0answers
242 views

What is an example of a snippet that computes something useful, that is both much smaller in Haskell AND beats C++ in performance? [closed]

For example, on Rosetta Code, Haskell's QuickSort is 2 lines long, while C++'s version is 90+ lines long. That is a great example of how simpler Haskell code can be. But it is probably slower. I know ...
2
votes
1answer
90 views

How can I improve the speed of this Strassen Algorithm implementation? [closed]

I'm struggling to determine why my Strassen implementation is so slow. It allocates memory with each iteration, but I'm freeing it all as appropriate. int** multiply(int** a, int** b, int size) { int ...
1
vote
2answers
83 views

Randomly selecting N distinct numbers without repetition [duplicate]

I want to have a set of randomly selected N distinct numbers from {1,2,...(k-1),K} where K>N. I want to write a C program to efficiently do this. Any help appreciated. Note: The naive program is ...
0
votes
2answers
89 views

Pop() function that crashes

I am trying to implement a stack with linked lists. I am having problems with the pop() function. It compiles OK, but when I try to run the code it crashes on tmp=tmp->head; and I have no idea why. ...
1
vote
2answers
56 views

Picking the next timer value from an array of periodic timers

I have a list of clients say (A,B,C,D) that have their own time periods/windows. I set a timer internally based on the next window expiry... from among (A,B,C,D)'s window sizes.. For example: Client ...
1
vote
1answer
126 views

algorithm for generating number combinations without repetition

I checked almost every similar post in here but i couldn't figure out how i can do what i want. What i am trying is to give an input in a C program, let say number 4, and the program return the ...

1 2 3 4 5 35