Tagged Questions
The circular tag has no wiki summary.
12
votes
7answers
2k views
Seaching for an element in a circular sorted array
We want to search for a given element in a circular sorted array in complexity not greater than O(Log n).
ex: search for 13 in {5,9,13,1,3}.
My idea was to convert the circular array into a regular ...
7
votes
4answers
2k views
How to create a closed (circular) ListView?
I want to create a customized ListView (or similar) which will behave like a closed (circular) one:
scrolling down - after the last item was reached the first begins (.., n-1, n, 1, 2, ..)
...
6
votes
6answers
2k views
Circular C++ Header Includes
In a project I have 2 classes:
// mainw.h
#include "IFr.h"
...
class mainw
{
public:
static IFr ifr;
static CSize=100;
...
};
// IFr.h
#include "mainw.h"
...
class IFr
{
public ...
5
votes
3answers
178 views
Circular buffer implementation in C
I have found pseudo code on how to implement a circular buffer.
// Producer.
while (true) {
/* produce item v */
while ((in+1)%n == out)
/* Wait. */;
b[in] = v;
in = (in + 1) % n
}
// ...
5
votes
7answers
2k views
Circular buffer in JavaScript
I was wondering whether anyone has already implemented a circular buffer in JavaScript? How would you do that without having pointers?
4
votes
2answers
132 views
C++ garbage collection and circularly referenced data
I'm currently implementing my garbage collector (in C++) using reference counting technique. However, there's a major problem is that if the data is circularly referenced, they're never collected ...
4
votes
3answers
235 views
a text file circular buffer in python
I need a python script implementing a circular buffer for rows in a text file limited to N rows like this:
row 1 -> pop
row 2
row 3
|
|
push -> row N
...
4
votes
1answer
786 views
Cut out circular image in canvas
I am useing html5 canvas, and I am creating a game were it is going to be possible to upload your face into the game, and use it as the main charactar. Unfortunately, the charactars in the game are ...
4
votes
4answers
260 views
Circular Shifts on Strings in Bash
I have a homework assignment where I need to take input from a file and continuously remove the first word in a line and append it to the end of the line until all combinations have been done. I ...
4
votes
2answers
254 views
Circular Match
I have a database with three tables: userid_tbl, need_tbl, have_tbl
create table userid_tbl
(user_id varchar2(15) not null primary key);
create table need_tbl
(user_id varchar2(15) not null,
...
4
votes
2answers
862 views
Circular Dependencies in Ruby
Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively.
foo.rb:
require "foo_sub"
class Foo
def foo
FooSub.SOME_CONSTANT
end
end
...
4
votes
8answers
3k views
circular dependencies between dlls with visual studio
I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio?
foo(int i)
{
if (i > 0)
...
3
votes
1answer
118 views
Circular Hough Transform Improvements
I'm working on an iris recognition algorithm that processes these kind of images into unique codes for identification and authentication purposes.
After filtering, intelligently thresholding, then ...
3
votes
3answers
192 views
Circular Reference with python lists
Can someone explain this?
>>> x=x[0]=[0]
>>> x
[[...]]
>>> x is x[0]
True
>>> x[0][0][0][0][0][0][0]
[[...]]
>>> x in x
True
what is [...]?
3
votes
3answers
4k views
OpenGL rotate around a spot
I want to rotate a gluSphere around a fixed point in a circular motion, like a planet going around the sun.
Would it be best to use glRotatef or glTranslate? If so, in which order should I call them?
...
2
votes
4answers
44 views
Place div on top of a <li> and <a> without moving their position
I am trying to place a circlular div (border-radius:85) on top of a <li><a></a></li> to make something like this:
Now making it on only one box its kinda working although ...
2
votes
1answer
79 views
How to calculate mean and standard deviation for hue values from 0 to 360?
Suppose 5 samples of hue are taken using a simple HSV model for color, having values 355, 5, 5, 5, 5, all a hue of red and "next" to each other as far as perception is concerned. But the simple ...
2
votes
3answers
122 views
Circular reference in domain model using c# struct
What happens when there is a circular reference between two structs? How does memory allocation work for the example below or would it yield and error?
public struct MultipleChoiceQuestion
{
...
2
votes
6answers
185 views
How can I override the ToString() method to output a list?
Is it possible to override the ToString() method to output a list?
Here's my code
namespace CircularClass
{
class InfinitelyCircular
{
public class RatsInAShip
{
...
2
votes
1answer
186 views
Why is g2d.rotate to 90 degrees not exactly 90 degrees? JAVA
Hi I am trying to create a circular text. I managed to do it somehow by for-looping each rotated character. But I still don't get it. I don't understand the angles. Could someone please give me a good ...
2
votes
2answers
1k views
Display indeterminate progressbar in Status bar on Android
I am trying to display an animated graphic identical to the indeterminate progress bar (not the horizontal one, but the circular one) in the status bar while my on-going notification is alive.
I ...
2
votes
2answers
437 views
graphviz: circular layout while preserving node order
Hey
I want to plot a graph of 128 nodes (labeled 1 to 128) in graphviz using circular layout. Circo does this, but I want the nodes to be placed in order of their label number instead of the order ...
2
votes
3answers
107 views
C++: Circularity and shared_ptr
I have a question regarding shared_ptrs and ownership in C++:
I have a bunch of objects created on the heap. Each one has a container which holds pointers to some of these objects, and sometimes, ...
2
votes
4answers
205 views
Circular reference among two .net assemblies
I have two assemblies A & B.
A has existing reference to B and it must be kept that way. Right now I made some changes to B that need to refer to A. So circular reference occurs.
Bit of details:
...
2
votes
5answers
805 views
Database design: circular references
I have three database tables:
users
emails
invitations
Emails are linked to users by a user_id field.
Invitations are also linked to users by a user_id field
Emails can be created without an ...
2
votes
2answers
100 views
linkedlist which links to itself?
Is there a name for a linked list type structure where the head and tail nodes link to each other? In such a list you can obviously iterate through it forever as it double backs on itself.
Was just ...
2
votes
2answers
182 views
removing a circular DB relationship
How can I get rid of a circular relationship in my db structure. I have an entity called Item. An item can have a sub item/s (circular relationship). An item can have more than one rate depending on ...
2
votes
2answers
492 views
Best way to draw icons on a pie (or circular) menu?
I am trying to figure out an algorithm to calculate where to place any number of icons for a circular menu on a device with a screen that is 240x320. The icons are 48x48 but can be scaled to any size. ...
1
vote
0answers
53 views
Bitcoin-qt 0.5.1 circular dependency
Is there a way to solve this ?
Bitcoin-qt 0.5.1 circular dependency while building with visual studio 2010 and nokia qt 4.7.4:
1>------ Build started: Project: Bitcoin, Configuration: Debug Win32 ...
1
vote
1answer
41 views
I'd like to make it possible, when user reaches the last image to show the first one after it and so on
I've got an UIScrollView and in it different images (about 30). I'd like to make it possible, when user reaches the last image to show the first one after it and so on. And I want to implement the ...
1
vote
2answers
229 views
Uncaught TypeError: Converting circular structure to JSON
We're using the fb:registration plugin to sign up users on our site. Today I noticed the registration redirect is no longer working in Google Chrome and Safari (latest public release). I know for sure ...
1
vote
2answers
285 views
Telerik MVC Grid with Ajax Binding using EntityObjects gets Circular References exception
I have been using Telerik MVC Grid for quite a while now and It is a great control, however, one annoying thing keeps showing up related to using the grid with Ajax Binding to objects created and ...
1
vote
0answers
47 views
Understanding circular program flow (vector of pointers + inheritance)
I'm writing a container class "AgentHandler" containing a vector of "Agent"s.
AgentHandler has functions for adding/removing instances of "Agent" into/from the vector.
I then proceed to pass the ...
1
vote
2answers
77 views
Circular Movement Image in JAVA
I want an circular movement of an image in JAVA, i thought I have the solution but it doesn't work and i'm a bit clueless now.
For calculating the points it needs to go im using pythagoras to ...
1
vote
2answers
114 views
Python, check type of object after circular import
Here are two files, foo.py and bar.py
bar.py has...
from foo import *
...at the top. bar.py uses types defined n foo.
When importing bar.py from foo I am having trouble determining the types of ...
1
vote
2answers
65 views
Two Controls Reference One-Another Correctly
I have a ComboBox and a DateTimePicker control in a .net forms application. The desired functionality for the relationship of the two controls is that a modification to one will change the value in ...
1
vote
4answers
481 views
Queue implementation with circular arrays: Which is the best way to resize a circular array?
I'm implementing a queue using a circular array, and I'm kinda stucked in the resize() method implementation (when the array is full).
Inside the enqueue() method I check if the size of the array ...
1
vote
1answer
384 views
How to make this linked queue circular using only the rear external pointer?
public void enqueue(Object element)
// Adds element to the rear of this queue.
{
LLObjectNode newNode = new LLObjectNode(element);
if (rear == null)
front = newNode;
else
...
1
vote
2answers
200 views
C++ Game - Signalling a parent class, circular dependency issue
I'm having a little circular-dependency problem. It works fine, but it makes for ugly-seeming code. It's in the context of a Snake game.
I have a class, Snake, which contains a vector of ...
1
vote
5answers
1k views
Can I use java.util.LinkedList to construct a circular/cyclic linked list?
I would like to create a circular/cyclic linked list where the tail of the list would point back to the head of the list. So can I use java.util.LinkedList and modify the tail node after creation of ...
1
vote
5answers
1k views
C++ Template Classes Circular Dependency Problem
We have two classes:
template<typename T, typename Size, typename Stack, typename Sparse>
class Matrix
and
template<typename T, typename Size>
class Iterator
Matrix should be able ...
1
vote
1answer
291 views
Circular NSSlider with stop (non-continuous)
I am not sure how to phrase this better as a title but I need to make an NSSlider that functions as a normal volume knob. At the moment it will spin around as many times as I hold the mouse down and ...
1
vote
1answer
136 views
An exception for a circular reference database - is this one?
I have 4 tables, linked in a circular reference - I remember from college that I was told this is bad however there are exceptions...I am hoping that this is one of them :)
My database contains 4 ...
1
vote
2answers
2k views
iPhone Circular Progress Indicator. CGContextRef. Draw on Demand
Ola Folks,
Once again, I want to leech experience, information and knowledge from those who have more of them than I do. Granted, I do make some effort looking for questions to answer... :)
Anyway, ...
1
vote
2answers
607 views
Circular Linked List in Cocoa
Is there something similar to a circular linked list available in Cocoa?
I know that an NSArray is ordered - but I don't think I can use 'nextItem' or 'previousItem' - correct? Furthermore, I need ...
1
vote
3answers
3k views
Circular rotating/magnifying menu with jquery
I'm trying to make a menu that contains 5 items/icons with the selected one being in the center. Clicking to the left or right of this centered icon, rotates the menu left or right, wrapping round the ...
1
vote
5answers
827 views
Circular Buffer in Flash
I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins. When there are ...
1
vote
2answers
526 views
Getting JSON from Jersey with circular dependencies
I am writing a service that uses Jersey and JAXB. My classes are annotated with @XMLRootElement, @XMLElement, etc. I have a circular dependency between two classes, so I have annotated the circular ...
1
vote
3answers
2k views
1
vote
1answer
495 views
Python: How to get rid of circular dependency involving decorator?
I had got a following case of circular import (here severly simplified):
array2image.py conversion module:
import tuti
@tuti.log_exec_time # can't do that, evaluated at definition time
def ...