Tagged Questions
The recurrence tag has no wiki summary.
81
votes
16answers
12k views
What's the best way to model recurring events in a calendar application?
I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how far ahead one can ...
43
votes
8answers
7k views
Is log(n!) = Θ(n·log(n))?
This is a homework question. I'm not expecting an answer, just some guidance, possibly :) I am to show that log(n!) = Θ(n·log(n)).
A hint was given that I should show the upper bound with nn and ...
27
votes
6answers
814 views
Determining the complexities given codes
Given a snipplet of code, how will you determine the complexities in general. I find myself getting very confused with Big O questions. For example, a very simple question:
for (int i = 0; i < n; ...
11
votes
2answers
2k views
Relational Schema for Fowler's Temporal Expressions
Martin Fowler defines an elegant object model for the scheduling of recurring tasks here, which maps to OO code very nicely. Mapping this to a relational database schema for persistence, however, is ...
10
votes
2answers
655 views
How can I compute the number of characters required to turn a string into a palindrome?
I recently found a contest problem that asks you to compute the minimum number of characters that must be inserted (anywhere) in a string to turn it into a palindrome.
For example, given the string: ...
9
votes
3answers
113 views
Find the formula of this binary recurrence equation? f(m,n) = f(m-1,n) + f(m,n-1)
SORRY GUYS! MY MISTAKE! Thanks for your reminder, I found out f(0,k) == f(k,0) == 1. This question is about how to count the number of shortest paths from grid (0,0) to (m,n).
I have to solve the ...
7
votes
1answer
485 views
How to compute recursion relations in mathematica efficiently?
I have a recursion to solve for.
f(m,n)=Sum[f[m - 1, n - 1 - i] + f[m - 3, n - 5 - i], {i, 2, n - 2*m + 2}] + f[m - 1, n - 3] + f[m - 3, n - 7]
f(0,n)=1, f(1,n)=n
However, the following mma code ...
7
votes
5answers
1k views
How to know when Big O is Logarithmic?
My question arises from the post "Plain English Explanation of Big O". I don't know the exact meaning for logarithmic complexity. I know that I can make a regression between the time and the number of ...
6
votes
3answers
365 views
SQLite statement to query for Recurring Calendar Events
I am designing a Calendar Application, which recurrence None, Daily, Weekly, Monthly & Yearly.
One of my requirements is that "No two events should be overlapping"
Name of the Table where I store ...
5
votes
1answer
212 views
Number of 1s in the two's complement binary representations of integers in a range
This problem is from the 2011 Codesprint (http://csfall11.interviewstreet.com/):
One of the basics of Computer Science is knowing how numbers are represented in 2's complement. Imagine that you write ...
5
votes
1answer
227 views
Big O Question - Algorithmic Analysis III
I have the following question:
Solve the recurrence relation simplifying the answer using Big 'O' notation:
f(0) = 2
f(n) = 6f(n-1)-5, n>0
I know this is a first order inhomogenous recurrence ...
5
votes
3answers
161 views
recurrence solution, too loose a bound?
I have the following worked out:
T(n) = T(n - 1) + n = O(n^2)
Now when I work this out I find that the bound is very loose. Have I done something wrong or is it just that way?
5
votes
5answers
267 views
Recurrence Relations
I am currently enrolled in a programming class and we are covering recurrence relations. Do these ever actually get used on the job? If so, I'd love to hear some examples of when it is useful.
5
votes
6answers
1k views
How would you store possibly recurring times?
I need to store whether something happens once, daily, weekdays, weekly, some days of the week, some days of the month, which may be numerical or symbolic, like first Monday of each month, and so on.
...
4
votes
3answers
1k views
Recurrence rule definition (RFC2445) question
I'm using Google's RFC2445 implementation (http://code.google.com/p/google-rfc-2445/) for recurrence rules. If I define a MONTHLY recurrence starting on the 30th of January, months with less than 30 ...
4
votes
2answers
2k views
Whats the best java date recurrence pattern calculator
Anyone know of a (reliable) date recurrence calculator, we're trying
to implement something in our app which would allow a schedule to be
created, similar to those for recurring meetings in Outlook. ...
3
votes
2answers
141 views
Why doesn't Mathematica numerically evaluate this RecurrenceTable?
I'm trying to make a RecurrenceTable with conditionals in Mathematica, and the recursive stuff is working right, but it won't evaluate it completely.
In:= RecurrenceTable[{x[n] == If[Mod[n, 2] == 0, ...
3
votes
5answers
4k views
How do I use Master theorem to describe recursion?
Recently I have been studying recursion; how to write it, analyze it, etc. I have thought for a while that recurrence and recursion were the same thing, but some problems on recent homework ...
3
votes
2answers
348 views
What client(s) should be targeted in implementing an ICalendar export for events?
http://en.wikipedia.org/wiki/ICalendar
I'm working to implement an export feature for events. The link above lists tons of clients that support the ICalendar standard, but the "three big ones" I can ...
2
votes
1answer
100 views
Android Calendar API insert recurring event
Using the Google Calendar Api.
After browsing the rfc2445, I'm still unable to set recurrence on an event.
private String[] days = {"SU", "MO", "TU", "WE", "TH", "FR", "SA"};
private String rrule ...
2
votes
2answers
78 views
How to derive function segs?
How can I construct the function segs that returns a list of all contiguous segments in a list?
For example, (segs '(l i s t)) should produce the following answer:
(() (t) (s) (s t) (i) (i s) (i s t) ...
2
votes
3answers
97 views
Recurssion issue in generating permutation in c++
i have two n in c++ and i want to generate permutation of the numbers in those vectors in such a way for each permutation of the first vector i have all the permutations of all the other vectors.
Say ...
2
votes
1answer
175 views
The Recurrence T(n)= 2T(n/2) + (n-1)
I have this recurrence:
T(n)= 2T(n/2) + (n-1)
My try is as follow:
the tree is like this:
T(n) = 2T(n/2) + (n-1)
T(n/2) = 2T(n/4) + ((n/2)-1)
T(n/4) = 2T(n/8) + ((n/4)-1)
...
the hight of the ...
2
votes
3answers
113 views
n log n is O(N) ?
I am trying to solve this recurrence
T(n) = 3 T(n/2) + n lg n ..
I have come to the solution that it belongs to masters theorem case 2 since n lg n is O(n^2)
but after referring to the solution ...
2
votes
3answers
144 views
Recurrence relations with multiple recurrences
I know how to do recurrence relations for algorithms that only call itself once, but I'm not sure how to do something that calls itself multiple times in one occurrence.
For example:
T(n) = T(n/2) + ...
2
votes
2answers
587 views
Solving a recurrence relation using iteration method
how to solve T(n) = T(n-1) + n using Iterative method and answer is theta(n^2)
2
votes
2answers
323 views
Is there a comprehensive library/module for ISO 8601 in ruby?
Is there already an implementation of all the date, time, duration and interval usage of the ISO 8601 standard in ruby? I mean something like a Class where you can set and get the details like, year, ...
2
votes
2answers
1k views
Update Item has Recurrence in SharePoint
I had an event list. I created a new item that has recurrence daily ( Start Time : 1/5/2010 12 : 00 AM and End Time : 5/30/2010 12:00 AM). I want to delete the item which has Start Time : 5/12/2010 ...
2
votes
1answer
555 views
Dot Game and Dynamic Programming
I'm trying to solve a variant of the dot game with dynamic programming.
The regular dot game is played with a line of dots. Each player takes either one or two dots at their respective end of the ...
2
votes
3answers
2k views
How to determine the height of a recursion tree from a recurrence relation?
How does one go about determining the height of a recursion tree, built when dealing with recurrence run-times? How does it differ from determining the height of a regular tree?
edit: sorry, i ...
2
votes
3answers
527 views
detecting conflicts in recurring events
I'm writing a calendar application that needs to check for conflicts
between recurring entries. Each Entry object has a recurrences() method
which returns an array of ranges - each range contains the ...
1
vote
3answers
91 views
SQL Recur every x weekday every x weeks
I'm trying to write a sql query which depending on what the user selects will recur every x day every x weeks.
So the user will select that they want the job to recur on tuesdays every 2 weeks
the ...
1
vote
1answer
245 views
[iOS]How to get the Calendar Event, one Recurrence as one event?
I get calendar event as the following code:
NSDate *startDate1 = [NSDate date];
NSDate *endDate1 = [NSDate distantFuture];
NSPredicate *predicate = [eventStore ...
1
vote
1answer
144 views
Can this recurrence formula be solved without using Master theorem? [closed]
T(N) = 2*T(N/2)+logN
I know the complexity is 0(N) by using Master theorem.
But, is there any solution like recurrence tree or something can prove this ?
I drew an expanding tree for T(N), but if I ...
1
vote
0answers
208 views
Recurrence For Running Time Of A Recursive Insertion Sort. Need Help?
Currently, I was assigned to write a recursive version of the insertion sort algorithm. And I did that. In fact, here is that:
void recursiveInsertionSort(int* inputArray, int p, int q)
{
while (q ...
1
vote
1answer
686 views
T(n) = sqrt(n) T(sqrt(n)) + n [closed]
Can this be solved by using Master Theorem ?? it is not of the form
T(n) = a*T(n/b) + f(n)
But this problem is given in the exercise of CLRS chapter 4.
1
vote
2answers
105 views
Clarification in adding a two numbers without using any arithmetic operators
I understood how this solution works.
int add_no_arithm(int a, int b) {
if (b == 0) return a;
int sum = a ^ b; // add without carrying
int carry = (a & b) << 1; // carry, but don’t ...
1
vote
1answer
66 views
Find recurrence equation from algorithm
I have to find the recurrence equation from this algorithm:
ALGO(n)
if n <= 2 then return(0)
else
y = ALGO(n/3)
i = 2^n
while i >= 2 do
j = (1/2) ...
1
vote
2answers
209 views
Rules of Big O - Question
If I have the following closed form solution for a recurrence relation, how can I simplify it under big O:
f(n) = 3^n + n.9^n
I would hazard a guess at:
f(n) is a member of O(9^n) -> Am not sure if ...
1
vote
1answer
178 views
Functional recurrence on a constant?
I am given this recurrence relation:
T (n) = T (n − a) + T (a) + cn
C > 0 , a >= 1 ..
my problem is with T (a) , I don't understand how you can "recurs" a constant??
Like, if am trying to build a ...
1
vote
1answer
351 views
T(n) = T(n - sqrt(n))
Does anyone knwo how to solve this recurrence?
Master Theorem doesn't work here.
1
vote
6answers
317 views
In PHP, how to know how many mondays have passed in this month uptil today?
Assume today is Feb 21, 2011 ( Monday ). It is the third Monday of this month. If date is given as input, How can I know how many Mondays have passed before it?
In PHP, how to know how many mondays ...
1
vote
3answers
448 views
when building a calendar app, should i store dates or recurrence rules in my database?
i am building a calendar website (asp.net mvc) application (think simple version of outlook) and i want to start supporting calendar events that are recurring (monthly, yearly, etc)
right now i am ...
1
vote
1answer
115 views
recurrence solving [closed]
I need to find the complexity of the current recurrence:
T(n) = 1/(T(n-1) + 1) + 1
thanks in advance for any idea or link with useful information
1
vote
1answer
264 views
Recurrence Relation for a loop
The question is to set up a recurrence relation to find the value given by the algorithm. The answer should be in teta() terms.
foo = 0;
for int i=1 to n do
for j=ceiling(sqrt(i)) to n do
...
1
vote
2answers
136 views
3rd <day_of_week> of the Month - MySQL
I'm working on a recurrence application for events. I have a date range of say, January 1 2010 to December 31 2011. I want to return all of the 3rd Thursdays (arbitrary) of the each month, ...
1
vote
3answers
617 views
Finding recurrence relations of an algorithm
I'm reading my algorithms text book, and I'm reading about recurrence relations and finding the algorithms big O complexity. I run across this line
"In the case of the merge-sort algorithm, we get ...
1
vote
1answer
737 views
Find recurrence relation of this algorithm?
Assuming n=B-A+1, I need to derive the recurrence relation of this algorithm:
void recurringalgorithm(int *a, int A, int B){
if (A == B){
for (int j=0;j<B;j++){
cout<<a[j];
...
1
vote
2answers
2k views
Recursion Tree, Solving Recurrence Equations
As far as I know There are 4 ways to solve recurrence equations :
1- Recursion trees
2- Substitution
3 - Iteration
4 - Derivative
We are asked to use Substitution, which we will need to guess a ...
1
vote
3answers
258 views
What is the best way to specify execution time of recurring jobs or tasks?
I am looking for a way of efficiently specifying a recurring job execution time without having to write an explicit execution time to a datastore. In other words, rather than saying 'job x next runs ...