Tagged Questions
GCD generally refers to problems regarding greatest common divisors. This should not be used for Apple's Grand Central Dispatch (use [grand-central-dispatch] for that).
5
votes
3answers
327 views
How does the Euclidean Algorithm work?
I just found this algorithm to compute the greatest common divisor in my lecture notes:
public static int gcd( int a, int b ) {
while (b != 0) {
final int r = a % b;
a = b;
...
4
votes
1answer
159 views
Scala: (Int, Int) => Int doesn't match (Int, Int) => Int
I'm trying to use the y-combinator to define gcd in scala:
object Main {
def y[A,B]( f : (A => B) => A => B ) : A => B = f(y(f))
def gcd = y[(Int,Int),Int]( (g) => (x,y) => if ...
4
votes
4answers
692 views
what is the fastest way to find the gcd of n numbers?
what is the fastest way to find the greatest common divisor of n numbers other than using
gcd(a,b,c)=gcd(gcd(a,b),c).
4
votes
2answers
211 views
Factor out GCD that is raised to a power
Using Mathematica (v.7) basically I want to bring an expression like this
(x + x^2 + x^3)^4
to
x^4 (1 + x + x^2)^4
What would be the best way to take a term like the GCD out of an expression ...
4
votes
1answer
2k views
RSA: Private key calculation with Extended Euclidean Algorithm
I'm a high school student writing a paper on RSA, and I'm doing an example with some very small prime numbers. I understand how the system works, but I can't for the life of me calculate the private ...
2
votes
1answer
63 views
EXC_BAD_ACCESS in nested dispatch_async with an NSAutoreleasePool
I have some code which is similar to the following code:
dispatch_queue_t queue = dispatch_queue_create("", 0);
dispatch_queue_t inner_queue = dispatch_queue_create("", 0);
...
2
votes
1answer
104 views
Parallel processing in Python à la Grand Central Dispatch?
Is there a way of doing parallel processing in Python using concepts similar to those of Apple's Grand Central Dispatch? Grand Central Dispatch looks, from the outset, like a nice way of handling ...
2
votes
1answer
103 views
Why is the binary GCD algorithm so much slower for me?
http://en.wikipedia.org/wiki/Binary_GCD_algorithm
According to Wikipedia it's supposed to be a wee bit faster than Euclid's algorithm (not much, but I was at least expecting to get equal ...
2
votes
1answer
324 views
C++ program to calculate greatest common divisor
I have started this program to calculate the greatest common divisor. This is what I have so far:
#include <iostream>
#include <math.h>
using namespace std;
int getGCD(int a, int b)
{
...
2
votes
2answers
35 views
How can you create a unique key for two interchangable integers?
I am trying to write a simple caching mechanism for Euclid's method of finding the GCD of two numbers:
gcd(a,0) = a
gcd(a,b) = gcd(b, a % b)
Note that gcd(a,b) == gcd(b,a).
For the cache, I need ...
2
votes
1answer
240 views
iPhone - a question about dispatch timers and timing
I have to fire a method at regular intervals (every 0.16 seconds). The tolerance can be, lets say up to 30%. Closer to 16 ms, better.
I have tried NSTimers but they are not precise enough. I have ...
2
votes
2answers
901 views
calling performSelectorInBackground: from background thread
What is the real effect of calling performSelectorInBackground:... from a method that is running in the background? I want it to run asynchronously
For example:
- (void) _imageBufferWasUpdated{
...
1
vote
2answers
60 views
How to get GCD and LCM of a range of numbers efficiently?
I currently use this code to find gcd and lcm
def gcd(a, b):
while b != 0:
a, b = b, a%b
return a
def lcm(a, b):
result = a*b/gcd(a,b)
return result
But what if I want to ...
1
vote
2answers
221 views
GCD recursive assembly language X86 MASM
Thank everyone for the help I have made some really good changes but now it gives me an answer of +4198498 instead of 5 for the first set of values which I know is wrong. Did i push something wrong or ...
1
vote
2answers
209 views
dispatch_async() in c
I am having problems understanding GCD. i need to use dispatch_async to spawn the function put_values() which will in an endless loop put values into a buffer. Get_values() will remove then also in ...
1
vote
2answers
130 views
What is the recommended pattern for the following GCD / blocks scenario?
I have a question about Grand Central Dispatch, blocks and memory management. Consider this code:
Worker *myWorker = [[Worker alloc] init];
[work doAsyncStuffWithBlock:^(NSMutableDictionary *info)
{
...
1
vote
1answer
116 views
How to set up proper object teardown when using GCD and calling back to main thread?
Consider this setup:
Object A creates object B for doing some work, and sets itself as B's delegate to be informed of work progress.
B does some work with GCD blocks, and signals back to A with the ...
1
vote
1answer
227 views
Unable to use GCD dispatch sources for reading from Serial Port file descriptors
I'm having trouble using Grand Central Dispatch Source events when reading from serial ports.
I use dispatch_source_create with DISPATCH_SOURCE_TYPE_READ so that the OS will run my block of code when ...
1
vote
1answer
258 views
iPhone - GCD knowing if a dispatch is suspended
I have to use
dispatch_resume(...
to resume a dispatch that was suspended, but as the method resuming the dispatch may be called by several parts of the app, I need to know if the dispatch is ...
1
vote
2answers
758 views
Displaying UIAlertView after some time
I'm trying to display a UIAlertView after some time (like 5 minutes after doing something in the app). I'm already notifying the user if the app is closed or in background. But I want to display a ...
1
vote
4answers
262 views
Finding 2 or more numbers having the given number as GCF
I don't want to find the GCF of given numbers. I use Euclidean for that. I want to generate a series of numbers having a given GCF. For example if I choose 4, I should get something like 100, 72 or 4, ...
0
votes
4answers
39 views
How to use a value returned in a different class?
This is probably a very simple question. Say I had a class that computed the gcd, called Gcdcomp. The code in that class all works. When i refer to it in my main block of code, I say..
...
0
votes
2answers
65 views
Serializing NSURLConnection Requests (iOS) - Use Synchronous Request?
I'm looping through a list of dates and making a request to a web server for each date in the list.
I would like each date to be processed completely before the subsequent request is sent to the ...
0
votes
3answers
66 views
greatest common divisor objetive c
I am new to ios programing. I have question about the GCD program
01 // This program finds the greatest common divisor of two nonnegative integer values
02
03 #import <Foundation/Foundation.h>
...
0
votes
4answers
188 views
Java modulo operator and GCD
Why does this code give me an answer of 25?
public int FindGcd()
{
int num = this.num;
int den = this.den;
while(den!=0)
{
int t = den;
...
0
votes
3answers
227 views
How to determine the currently running async GCD Dispatch Queues
I have a refresh button on my iOS application that launches an asynchronous dispatch queue in GCD. The name of the queue is custom. There can be issues where the user bangs the heck out of the button ...
0
votes
3answers
1k views
Grand Central Dispatch vs. NSThread
i create some code, where i test NSThread and GDC:
Here is the code:
- (void)doIt:(NSNumber *)i
{
sleep(1);
NSLog(@"Thread#%i", [i intValue]);
}
- (IBAction)doWork:(id)sender
{
for (int i = ...
0
votes
1answer
161 views
GCD and LCM relation
The following relation works only for two (3, 12) numbers, it fails to produce the right answer when used for three numbers (3,12,10) . Just wondering if is it my understanding or it is just for two ...
0
votes
3answers
436 views
LCM of two numbers
I am getting wrong result for my LCM program.
Ifirst find gcd of the numbers and then divide the product with gcd.
int gcd(int x, int y)
{
while(y != 0)
{
int save = y;
y = x % y;
x ...