Tagged Questions
The cycle tag has no wiki summary.
752
votes
16answers
97k views
Cycles in family tree software
I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that he has two children with his own ...
17
votes
10answers
734 views
Efficient algorithm to determine if an alleged binary tree contains a cycle?
One of my favorite interview questions is
In O(n) time and O(1) space, determine whether a linked list contains a cycle.
This can be done using Floyd's cycle-finding algorithm.
My question is ...
16
votes
5answers
4k views
How to break outer cycle in Ruby?
In Perl, there is an ability to break an outer cycle like this:
AAA: for my $stuff (@otherstuff) {
for my $foo (@bar) {
last AAA if (somethingbad());
}
}
...
16
votes
4answers
882 views
Any chances to imitate times() Ruby method in C#?
Every time I need to do something N times inside an algorithm using C# I write this code
for (int i = 0; i < N; i++)
{
...
}
Studying Ruby I have learned about method times() which can be ...
11
votes
5answers
9k views
How to determine if a linked list has a cycle using only two memory locations
Does anyone know of an algorithm to find if a linked list loops on itself using only two variables to traverse the list. Say you have a linked list of objects, it doesn't matter what type of object. ...
7
votes
5answers
94 views
Cycle through list starting at a certain element
Say I have a list:
l = [1, 2, 3, 4]
And I want to cycle through it. Normally, it would do something like this,
1, 2, 3, 4, 1, 2, 3, 4, 1, 2...
I want to be able to start at a certain point in ...
7
votes
1answer
574 views
Why increase pointer by two while finding loop in linked list, why not 3,4,5?
I had a look at question already which talk about algorithm to find loop in a linked list. I have read Floyd's cycle-finding algorithm solution, mentioned at lot of places that we have to take two ...
7
votes
1answer
662 views
How long does the stream of Random().Next() take until it repeats?
Consider the .NET Random stream:
var r = new Random();
while (true)
{
r.Next();
}
How long does it take to repeat?
6
votes
1answer
151 views
Is there a data structure for DAGs that supports efficient edits?
I'm looking for a data structure that will store any DAG, but can efficiently (i.e., sub-linearly in the number of edges/vertices) detect if adding an edge would create a cycle (and thus prevent you ...
6
votes
3answers
2k views
Explain how finding cycle start node in cycle linked list work?
I understand that Tortoise and Hare's meeting concludes the existence of loop, but how does moving tortoise to beginning of linked list while keeping the hare at meeting place, followed by moving both ...
6
votes
6answers
6k views
how to find CPU cycle for an assembly instruction
I heard there is Intel book online which describes the CPU cycles needed for a specific assembly instruction, but I can not find it out (after trying hard). Could anyone show me how to find CPU cycle ...
5
votes
1answer
679 views
Tarjan cycle detection help C#
Here is a working C# implementation of tarjan's cycle detection.
The algorithm is found here:
http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm
public class ...
5
votes
3answers
216 views
Check if two arrays are cyclic permutations
Given two arrays, how do you check if one is a cyclic permutation of the other?
For example, given a = [1, 2, 3, 1, 5], b = [3, 1, 5, 1, 2], and c = [2, 1, 3, 1, 5] we have that a and b are cyclic ...
5
votes
2answers
3k views
What is dynamic programming algorithm for finding a Hamiltonian cycle?
What is dynamic programming algorithm for finding a Hamiltonian cycle in a undirected graph?
I have seen somewhere that there exists a algorithm with O(n*2^n) time complextity
5
votes
2answers
6k views
jQuery Cycle plugin z-index float problem
When I try to place an element on top of my jQuery Cycle element, it doesn't work. The element is always behind the jQuery cycle element. I use float: right; to position the element, and set its ...
4
votes
2answers
125 views
JQuery cycle - fadein/fadeout interrupted
I have a JQuery slideshow where some text/slide fades in and out.
At the same time I have a navigation/spots to click. When you click on a spot the slide/text changes.
The problem is when the ...
4
votes
2answers
185 views
Cycle detection with the Hare and Tortoise approach
I understand that in order to detect a cycle in a list I can use the Hare and Tortoise approach, which holds 2 pointers (slow and fast ones). However, after reading in Wiki and other resources, I do ...
4
votes
4answers
316 views
What's the best way of skip N values of the iteration variable in Python?
In many languages we can do something like:
for (int i = 0; i < value; i++)
{
if (condition)
{
i += 10;
}
}
How can I do the same in Python? The following (of course) does ...
4
votes
2answers
290 views
itertools.cycle().next()?
Well, I was using itertools.cycle().next() method with Python 2.6.6, but now that I updated to 3.2 I noticed that itertools.cycle() object has no method next().
I used it to cycle a string in the ...
4
votes
4answers
1k views
How to measure CPU cycles per instruction in a C program
I have a C program where I am starting to use some SIMD optimizations for the SPE (Cell processor), etc. I would like somehow to "time" how many cycles do they need. One idea is to switch on/off and ...
4
votes
1answer
196 views
Pythonic way of copying an iterable object
For a small project I'm working on I need to cycle through a list. For each element of this cycle I have to start another cycle through the same list, with the former element as first element of the ...
4
votes
1answer
828 views
help in the Donalds B. Johnson's algorithm, i cannot understand the pseudo code (PART II)
i cannot understand a certain part of the paper published by Donald Johnson about finding cycles (Circuits) in a graph.
More specific i cannot understand what is the matrix Ak which is mentioned in ...
4
votes
4answers
925 views
How to find the length of a linked list that is having cycles in it?
This was one of the interview questions asked. How to find the length of a linked list that is having cycle in it. I know how to calculate whether a linked list has a cycle or not using Hare and ...
4
votes
2answers
2k views
Checking for odd cycles in an undirected graph
I'm back with another similar question. I am currently working on a Java program that will check if a graph is 2-colorable, i.e. if it contains no odd cycles (cycles of odd number length). The entire ...
4
votes
2answers
259 views
What are cycles ? in relation to python
im using the fantastic eric4 ide to code python, it's got a tool built in called 'cyclops', which is apparently looking for cycles. After running it, it gives me a bunch of big bold red letters ...
4
votes
2answers
2k views
How can I find the number of Hamiltonian cycles in a complete undirected graph?
Can someone explain how to find the number of Hamiltonian cycles in a complete undirected graph?
Wikipedia says that the formula is (n-1)!/2, but when I calculated using this formula, K3 has only one ...
4
votes
2answers
7k views
CSS, JQuery Cycle and IE issue
I'm using a jQuery plugin called "Cycle" and I am having issues with the CSS for it in IE, it looks perfect in Opera, FF, Chrome and Safari, but IE is cracking the sads..
...
3
votes
2answers
88 views
Detecting a repeating cycle in a sequence of numbers (python)
I was wondering what would be a a fairly 'common' or normal way of doing this. Wasn't really looking for the shortest possible answer like a 2-liner or anything. I've just quickly put this piece of ...
3
votes
3answers
45 views
JS return next in array, cycle endlessly
I have a list of strings like so;
var mystrings = [
'apple',
'banana',
'orange'
]
I would like a function I can call at anytime to get the next string.
And when the end of the list is ...
3
votes
2answers
116 views
How to write Main-Loop for a server?
I have a simple fcgi server written in c++ - for now it's single threaded. I saw the main loop for example like
accept_connections();
handle_data();`
handle_connections();
but what if I want to ...
3
votes
1answer
380 views
Transparent PNG (24) issue in IE8 and below using jQuery Cycle
I'm using jQuery cycle to fade my slideshow in / out.
My slides have a background, and their are semi-transparent PNG's (using tag) within my slides. While the slide is fading in, the ...
3
votes
4answers
189 views
Eliminating cyclic flows from a graph
I have a directed graph with flow volumes along edges and I would like to simplify it by removing all cyclic flows. This can be done by finding the minimum of the flow volumes along each edge in any ...
3
votes
5answers
254 views
weak_ptr and parent-child cyclic dependencies
I currently have something similar to the following:
class Parent
{
//just a single child... for sake of simplicity
//no other class holds a shared_ptr reference to child
...
3
votes
1answer
211 views
jQuery Cycle Slideshow stops workring with 3+ photos
I have a slide show with Previous and Next buttons that works fine with 3 <li>'s but once I add a Fourth (or more) the next button and previous button don't show up, and they don't work (even if ...
3
votes
1answer
946 views
Prototype/Scriptaculous Cycle (Slideshow) Plugin
I've got a bunch of websites that use a few Prototype/Scriptaculous plugins such as lightbox and modalbox, hence include references to these two libraries on various pages.
I now need to implement a ...
3
votes
1answer
1k views
Jquery Cycle Div as Anchor
I'm building a page that has a few divs of content that will slide in and out - just a few lines of code with jQuery Cycle.
I have a navigation on the side in which I want to append the links to. No ...
3
votes
5answers
3k views
Problem trying to do window resize with jquery cycle slideshow
Im trying to run a javascript window resize script on a page with a jquery cycle slideshow but im hitting some bugs I cant seem to work out. It resizes the first image fine on page load but then ...
3
votes
3answers
2k views
jQuery.Cycle showing small images at first load
I've got problem with jQuery.cycle plugin. At first load of page (when imgs arent cached) its showing small imgs, like thumbnails. You can see it at (edit: sorry, old link) - just wait when the second ...
3
votes
1answer
484 views
jQuery Cycle Plugin - Change Pager Anchors to Weekdays
I want to create a menu that sorts by days. Everything works except the pager won't output weekdays. My code is as follows:
var days = new ...
3
votes
3answers
9k views
jQuery Cycle pagerAnchorBuilder
I'm using the Cycle plugin for use in a news-rotator. This means I'm using Div's to populate the slides instead of images.
My ultimate goal is to make a pager where instead of the usual 1, 2, 3, 4, ...
3
votes
5answers
717 views
Why does Java toString() loop infinitely on indirect cycles?
This is more a gotcha I wanted to share than a question: when printing with toString(), Java will detect direct cycles in a Collection (where the Collection refers to itself), but not indirect cycles ...
3
votes
2answers
5k views
Problem using jQuery cycle plugin as image rotator and a pager
I am trying to use jQuery in order to make a pager for tumbs and large images and I don't succeed.
I am using this example from jQuery's site, I think I followed the direction but it doesn't seem to ...
3
votes
3answers
1k views
Javascript: Popup with movie from images in main window
I'm a mostly-newbie Javascript'er and I'm trying it on a webpage which, upon pressing a button, pops up a window which shows a cyclic "movie" with the images from the main window. From what I've tried ...
2
votes
3answers
67 views
How can I check if a Hashtable values are all 0?
This is my code :
Hashtable actualValues = new Hashtable();
actualValues.Add("Field1", Int32.Parse(field1.Value));
actualValues.Add("Field2", Int32.Parse(field2.Value));
actualValues.Add("Field3", ...
2
votes
2answers
60 views
Making a slider with jquery
I need a slider that is composed of three groups with 3 slider inside. It will start sliding the first group (1-2-3) and after show second group... cycling all. The slider should pause on mouse over ...
2
votes
4answers
72 views
Mysql query inside a php loop
mysql_query("INSERT INTO fatture_servizi (id, rif_fattura, servizio, quantita, prezzo_unitario, prezzo_servizio, iva) VALUES ('NULL', '$invoice_rif', '{$services_global[$i]['service']}', ...
2
votes
1answer
27 views
Avoid cycle reference
I have a class Form, which holds a hash of Question items.
class Form
{
Dictionary < int , Answer> listOfQuestions;
}
class Question
{
int questionId = 2;
int dependsOnQuestion = ...
2
votes
1answer
90 views
MASM - very beginner proggie
I am learning assembly just for 1-2 hours, so forgive me for my possible stupidity :)
I am trying to write a program which calculates amount of "1" bits in some byte.
The problem itself seems to be ...
2
votes
2answers
69 views
jQuery Cycle - What's wrong with this jquery script?
I am using the jquery cycle plugin to do a slideshow. I have 5 photos sliding but only showing 3 thumbnail pagers at a time. I wanted that when it slides to the 4th photo, the thumbnails on a bottom ...
2
votes
1answer
78 views
jQuery Cycle plugin- How to return the index number of the currently displayed slide?
I'm currently using Malsup's Cycle plugin . I am just wondering is it possible to have cycle plugin return the index number of the currently displayed slide??
I want to change the content of the ...