Tagged Questions
1
vote
1answer
35 views
Algorithm to get a point in a diagonal segment
Look at this image(sorry, I just have paint brush at my works' machine):
There you see two black rectangles, one major and one minor, inside the major. Consider they are divs. The red dots are the ...
2
votes
2answers
42 views
Algorithm for finding empty cell around desired position in a grid
I will describe my problem using the attached image :
The green block is the starting position of my game entity. Next I'd like to move it to the position marked by the orange square. But at the ...
-7
votes
3answers
84 views
Javascript factorial [closed]
I need help with the following.
The factorial of a non-negative integer n (denoted by n!) is the product of all positive integers less than or equal to n.
n! = n * (n-1) * (n-2) * ... * 1
For ...
13
votes
5answers
285 views
Is it possible to enumerate computer programs?
Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function:
function find_truth(){
...
1
vote
1answer
36 views
Filtering out values of a bidimensional array
I have a bidimensional array which looks like this:
[[10, 20, 30, S1]
[10, 20, 30, S1]
[10, 20, 30, S1]
[50, 70, 80, G1]
[50, 70, 80, G1]
[50, 70, 80, G1]]
I want to filter out every "non-first" ...
-1
votes
1answer
48 views
PHP vs Javascript when creating sophisticated sorting algorithm [closed]
I am wondering if it makes sense to do a sophisticated sort algorithm to data retrieved from mysql using javascript instead of relying on mysql queries and php to do selection and sorting based on ...
2
votes
5answers
99 views
How to insert new line after N char count in javascript?
I have a string which may have new line '\n' char in it. Now I want to insert new line '\n' after every 4 (or N) chars in that string.
For example:
1)
INPUT: "I am John Doe."
OUTPUT: "I ...
0
votes
1answer
28 views
Select options based on percentage
I need an efficient method to select options based on percentages.
For example, assume we have four colors: black, blue, red and white.
Now, I'm going to create an array filled with colors, except, ...
0
votes
2answers
49 views
Algorithm Needed: Predictable Randomized Tiles in Javascript [duplicate]
Here is the function definition:
/**
* @param {number} x The x-coordinate (can be positive or negative)
* @param {number} y The y-coordinate (can be positive or negative)
* @param {number} ...
-1
votes
2answers
39 views
ranking arbitrary array of objects
If I have an array like this
var cars=
[
{ 'title':'brand', 'value':'honda'}
{ 'title':'brand', 'value':'toyota'}
{ 'title':'color', 'value':'red'}
{ 'title':'color', ...
3
votes
5answers
85 views
Ranks of array elements with respect to lexicographic ordering
I have an array A of length n containing strings of length 3. I want to build an array B where each string in A is replaced by its rank in A with respect to the lexicographic ordering. (Note that A ...
1
vote
2answers
67 views
Javascript text highlight function
Scenario
I am trying to develop a Javascript text highlight function.
It receives in input a text to search inside, an array of tokens to be searched, a class to wrap the found matches:
var fmk = ...
0
votes
2answers
80 views
How to spawn enemies in a mixed pattern based off ratios
Let's say you have four enemy types: Basic, Strong, Poison, and Flying. For each level in the game, they each have their own spawning frequencies, which results in ratios of: 0.4, 0.3, 0.2, and 0.1 ...
0
votes
2answers
46 views
Arranging rectangles within a boundary without overlap and x contraints
I am trying to arrange an unknown number of rectangles so that they dont overlap each other. There are a number of constraints when rearranging rectangles:
Can ONLY move in the positive y (up) ...
4
votes
7answers
155 views
Finding a pattern in a binary string
I'm trying to find a repeating pattern in a string of binary digits.
eg. 0010010010 or 1110111011 = ok
not. 0100101101 = bad
The strings are 10 digits long (as above) & i guess 2 iterations of ...
0
votes
1answer
60 views
JavaScript find names in strings
What's a good JavaScript library for searching a given string for a large list of names.
For example, given a list of 1000 politicians names find every instance in a string and wrap it in a span.
...
3
votes
2answers
167 views
Algorithm to generate a starfield
I just learned about Logo yesterday. Being born in the nineties I never came across it before. So I started using an online Logo Interpreter written by Joshua Bell and I decided to write a circle ...
-1
votes
0answers
48 views
Deploying heuristics for detecting poor posts [closed]
I tried asking a similar question before and while that was a good step towards finding a solution, it did raise another two questions.
In a Meta post, Jeff has talked about some heuristics and ...
2
votes
6answers
111 views
Finding the nth item in a repeating list of fixed items
I have to determine the mathematical formula to calculate a particular repeating position in a series of numbers. The list of numbers repeats ad infinitum and I need to find the number every n numbers ...
0
votes
0answers
39 views
“Combine” logical expression and return the subexpressions
I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions.
Some examples of what I need:
foo -> ["foo"]
foo bar -> ...
3
votes
2answers
195 views
Trying to figure out how to get current face of a cube
I've been playing around with Paul Hayes' 3d Cube trying to figure out an algorithm that can determine the face of the cube that's currently facing the user at any given time. Here is the relevant ...
0
votes
0answers
78 views
Javascript - Bron-Kerbosch, Girvan-Newman algorithm (max cliques/communities in graph)
I am searching for an Javascript implementation of the Bron-Kerbosch algorithm or Girvan-Newman algorithm.
Basically I want to color maximal cliques/communities in an undirected graph.
Sadly, I ...
0
votes
2answers
56 views
How to calculate the proportional color between the three given with a percentage?
I have three hexadecimal colors introduced by the user, for example:
#39bf26
#c7c228
#C7282E
Then they have to choose an percentaje between 1 and 100.
If the percentaje is 100, the color ...
0
votes
2answers
58 views
Fetch Z random items from array of size N in Z time?
I've got an array of size N which might be ordered in a certain way. I would like to get Z random items from this array in < O(N) time.
My understanding is that if I shuffle my array using ...
2
votes
1answer
93 views
Breadth First Search in Javascript
function BFS_search(data, start, ende){
var queue = new Array();
var steps = 0;
for(var x=0; x<data.Adjazenzen.length-1; x++){ //push start Element in Queue
...
0
votes
1answer
118 views
How do I break out of loops in recursive functions?
I'm working with a array of category objects that can have an array of child category objects. The tricky part is that the depth of this nested data is unknown (and can change). (See sample at ...
0
votes
0answers
37 views
FrontEnd javascript application conceptual design
I need to develop a builder/designer for customizing products on a web page.
I have a product image to display, then the system should provide tools to customize the product. Adding text, changing ...
0
votes
0answers
83 views
The best way to implement text search
Imagine that we have next element:
<input type="text" data-search />
<div data-container>
<div>text 1</div>
<div>text 2 <span>some other</span> ...
0
votes
1answer
69 views
Scramble word algorithm help please [duplicate]
I am trying to make simple game, where words are loaded from database (check)
put into array (check)
then one after one they are scrambled and displayed with a text field for the user to type in.
...
0
votes
0answers
36 views
optimize js script and find the best solution
i need to optimize this script by any way, may be you can find better algorithm for this sorting. this script get points like "Oslo - Tokyo, Moscow - Berlin, Rome - Barselona, Barselona - Oslo, Tokyo ...
1
vote
2answers
95 views
why is DOM tree oder preorder, depth-first traversal?
why is DOM tree oder preorder, depth-first traversal?
What are the advantages of this design choice compared to other traversal like BFT?
I was just looking into DOM standard link and found the ...
0
votes
1answer
64 views
Type of datastructure
I have multiple questions which contains sub questions. I would like to store in a data structure so that I can choose sub question when user selects the first question. Also, some sub questions uses ...
0
votes
0answers
38 views
Algorithm to recognize shapes drawn
I am searching for an algorithm using which I can recognize a geometric shape drawn (e.g. rectangle, triangle, circle).
i.e. if someone draws a circle, I should be able to recognize it but not draw ...
3
votes
2answers
64 views
What are elegant ways to pair characters in a string?
For example, if the initial string s is "0123456789", desired output would be an array ["01", "23", "45", "67", "89"].
Looking for elegant solutions in JavaScript.
What I was thinking (very ...
0
votes
2answers
82 views
The name of the pattern that deals with “Switchlike” checkboxes
I'm trying to deal with a problem whose name I can't quite place (and hence have trouble googling).
It deals with a set of 'switch'-like checkboxes.
Here are the specifics:
I am using the image ...
10
votes
2answers
205 views
Get the closest value for combinations of an array (JS)
I'm looking for an algorithm that I can use for combining values in array, to get as close as possible to "another value".
For instance, the number I want to find out what combination that gives the ...
0
votes
0answers
62 views
javascript algorithm for basic algebra?
Does anybody know of an algorithm that can be applied to javascript to solve basic algebra?
For example:
x + 5 = 11
Then return x, which would be 6.
0
votes
3answers
116 views
There is another way to optimize this bubble-sort?
I have this code which sort a numeric array using bubble sort algorithm.
var a = [34, 203, 3, 746, 200, 984, 198, 764, 9];
function bubbleSort(a)
{
var swapped;
do {
swapped = false;
...
9
votes
1answer
150 views
Fill 2D grid with single path
How can I fill in a square 2D array with numbers so that a (random) path of consecutive numbers in ascending order is created from 1 to (edge length)2?
I'm trying to write a Hidato (aka Hidoku) ...
-6
votes
2answers
67 views
Algorithm for Continuous Number arrangement - Javascript
i need number arrangement algorithm or javascript code for following case
input : [0,0,1,1,3,3,5,5,7,8,8,8,10]
output : [0,0,1,1,2,2,3,3,4,5,5,5,6]
Thanks
i try following snippets
var ...
0
votes
3answers
68 views
Convert parent-child array to tree
Can anyone help converting the following list of parent-child objects:
[
{
"name":"root",
"_id":"root_id",
},
{
"name":"a1",
"parentAreaRef":{
...
4
votes
2answers
124 views
Algorithm for Image Sampling for Polygonal Representation using Canvas and JavaScript?
First off I'm not used to dealing with images, so if my wording is off please excuse me.
I am looking to take an image that is dropped onto a HTML5 canvas, sample it, do a reduction of the sampling, ...
0
votes
2answers
101 views
Getting nth smallest number location in array
Pretty basic question but I can't seem to find any examples of how to solve it in Javascript.
I would like to create a function where you pass a number representing "n" and it returns the location of ...
0
votes
2answers
177 views
Iterating item in a loop
I have a List<int> with the values like 60,45,45,45,45,30,60,60,15 people
Also i have two slots. 1st slot is capable to occupy 180 people
Problem is I need to loop List<int> to fill ...
1
vote
2answers
218 views
Optimized Algorithm to compare Templates of two URLs
EDITED, Please Read Again, As I added some work of mine
My task is to compare templates of two URLS. I am ready with my algorithm. But it takes too much time to give final answer.
I wrote my code in ...
5
votes
11answers
192 views
How does this recursion work?
This is an example from Eloquent Javascript:
By starting from the number 1 and repeatedly either adding 5 or
multiplying by 3, an infinite amount of new numbers can be produced.
How would you ...
-1
votes
1answer
173 views
Get all permutations of an array of length L using iteration [duplicate]
How can I get a list of all the possible permutations of an array of length L using iteration?
The output elements should contain only permutations of the same length as that of the original array.
...
0
votes
1answer
41 views
Beautiful numbers wave in associative arrays
I am actually working on a 'ground metrics engine' for a game. What I basically do is copying the real map data into another associative array, and map it with some metrics attribute like fertility or ...
9
votes
1answer
207 views
Algorithms for parallelization of cloth simulation system?
A simple cloth simulation can be done using the following algorithm:
def tick(dt):
for p1 in particles:
for bound in p.bounds:
p2 = bound.particle
p2.vel += ...
5
votes
1answer
87 views
Interconnected curved lines
Given a series of JSON co-ordinates typically in the format:
{from: {x:0, y:0}, to: {x:0, y:10}, ...}
I would like to draw a series of straight dotted paths which are connected with simple, fixed ...


