0
votes
0answers
33 views

How to use TSP methods to get shortest Hamiltonian path from a given node [closed]

I have a complete weighted graph and all the edges satisfy the triangle inequality. I want to find the shortest path through all nodes from a given node. After looking around, I noticed that one ...
0
votes
0answers
40 views

What is the space complexity of alpha-beta pruning?

Question Assume that b is the maximum branching factor of a search tree, d is the depth of the least cost solution, and that m is the maximum depth of the search space. Then, assuming a ...
-1
votes
5answers
84 views

String to unique integer hashing

I'm trying to develop a system that can change my string into a unique integral value, meaning say for example the word "account" has an encrypted numerical value of 0891 and no other word can ...
0
votes
2answers
52 views

source code snippets for creating a lookup table with insert, delete and search function

I want to construct a table with linux C each table entry has 3 fields: 1 ip/port pair, 2 a FIFO queue pointer, 3 a thread id the first entry ip/port pair is also a key for search, for this ...
0
votes
4answers
78 views

Binary search on unknown size array

Suppose an array has been given and want to find element in that array , how can you search an element in that array using binary search and that given array is already sorted and size of the array is ...
0
votes
2answers
58 views

Binary tree challenge example [closed]

I have been watching some lectures from the excellent Richard Buckland and experimenting with binary trees but I don't completely understand how to implement one. Below is how far I have got. ...
0
votes
3answers
82 views

Similar pairs in a tree

This is a problem from a Hackerrank contest: You are given a tree where each node is labeled from 1, 2, …, n. How many similar pairs(S) are there in this tree? A pair (A,B) is a similar pair iff ...
1
vote
3answers
101 views

Find first root of a black box function, or any negative value of same function

I have a black box function, f(x) and a range of values for x. I need to find the lowest value of x for which f(x) = 0. I know that for the start of the range of x, f(x) > 0, and if I had a value for ...
0
votes
1answer
50 views

How to search objects affecting a point in space

Lets say you have a large grid. You have objects that operate on sets of points. Presumably the reasonable way to implement this to have reasonable performance at runtime (namely say reasonably sized ...
1
vote
1answer
27 views

Multidimensional search by combining geospatial indexes

I build application that stores millions of floating point vectors, each vector having ~100 dimensions. With a query vector, I need to search through these vectors for the k nearest (euclidean) ...
1
vote
3answers
80 views

PHP Fastest search algorithm for two dimensional array

I am working on a data import process and need to search different 2 dimensional arrays for a specific code. The array structure look like this: Index ID Code ---------------- 0 34 P1 1 ...
1
vote
3answers
128 views

Finding length of substring

I have given n strings . I have to find a string S so that, given n strings are sub-sequence of S. For example, I have given the following 5 strings: AATT CGTT CAGT ACGT ATGC ...
0
votes
1answer
59 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. ...
0
votes
0answers
77 views

Java: Algorithm for Searching Tree Structure of Nodes

Im working on a "family tree" program in java, and I am having trouble wrapping my head around an algorithm for searching through the nodes. A node consists of a Name, and link to a partner, sibling, ...
1
vote
1answer
46 views

How to modularize heuristic in A* (run-time heuristic)

I was wanting to use the strategy pattern to modularize the heuristic in my A* implementation but am having some trouble separating it. I tried to initialize my priority queue with a Comparator that ...
0
votes
1answer
84 views

Job searching algorithm

My issue seems simple enough to me, but I can't break it down the the bare essentials to be able to program it into my game. First of all different professions requires different skills, these skills ...
0
votes
0answers
26 views

how to determine value of the d in rabin karp

In rabin karp algorithm d is the number of elements in the Alphabet. for example; text = a a c b a d in here d is 4. If user can enter the text and pattern, in that case how can we assign ...
0
votes
2answers
33 views

How to fuzzily search for a dictionary word?

I have read a lot of threads here discussing edit-distance based fuzzy-searches, which tools like Elasticsearch/Lucene provide out of the box, but my problem is a bit different. Suppose I have a ...
0
votes
5answers
92 views

Fast way to search in the List<String> in Android

Problem Description I have list of strings, which contains 8000 items. Items which contains list are described below. List<String> stringList = new List<String>(8000); ...
0
votes
1answer
52 views

Hard Coding Depth First Search Results (or Optimizing?)

I need to get all possible paths of a tree so I implemented a DFS like this: void bisearch(std::vector<int> path, int steps, int node, ...
1
vote
2answers
52 views

Search value in tree of dicts in python

I have a giant dict with a lot of nested dicts -- like a giant tree, and depth in unknown. I need a function, something like find_value(), that takes dict, value (as string), and returns list of ...
0
votes
2answers
62 views

Binary search algorithm does not work properly - Java

I want to make my own binary search algorithm to search ArrayList of 1 000 000 elements. I decided to do the search with do-while loop. I am aware I could use while() loop. But when I run it, it takes ...
1
vote
1answer
95 views

Boyer-Moore-Horspool Algorithm for All Matches (Find Byte array inside Byte array)

Here is my implementation of BMH algorithm (it works like a charm): public static Int64 IndexOf(this Byte[] value, Byte[] pattern) { if (value == null) throw new ...
-3
votes
1answer
52 views

Java 1.6: Sorting a List of models basel on a model value

I am using java 1.6. I have a Employee model as shown below: private String id; private String firstName; private String lastName; private String phoneNumber; //getters and setters The ...
1
vote
1answer
47 views

BFS - WordChain/Wordladder

I need some help with a problem. I want to find the longest shortest path between some word and some given endword. All the words have are of length 4. I have a graph where each node represents a word ...
3
votes
1answer
258 views

A Star Search Algorithm

Here I have a query regarding the A Star Search Algorithm. I'm building what is known as the 8 piece puzzle. This is a game with 9 places (1 is empty) and you have to arrange the tiles in a correct ...
0
votes
2answers
105 views

Knn search for large data?

I'm interested in performing knn search on large dataset. There are some libs: ANN and FLANN, but I'm interested in the question: how to organize the search if you have a database that does not fit ...
0
votes
1answer
118 views

Implement A*-Search as Breadth-First-Search / Depth-First-Search

For an assignment in "Introduction to artificial intelligence" I need to solve the following question: Let f(n) = c1*g(n) + c2*h(n) be an evaluation function, where c1,c2 be constants. 1. Define ...
0
votes
1answer
62 views

depth-first-iterated-deepening search vs depth-first search

I actually don`t have a question concering coding, but search algorithms, I hope this is ok. In an assignment I need to solve the following question: "Describe a state space in which dfid is much ...
1
vote
2answers
51 views

Preprocess a constant set of strings for binary searching

I have a sorted list of several strings (size=K < 1000). I need to find insertion positions for billions (size=N) of strings in the sorted list. The list is kept constant and strings are inserted ...
8
votes
3answers
320 views

Optimal order fulfillment

I have the following problem. A user has a cart with N items in it. There is a quantity Q of each item. Further, there are P warehouses, and each of them has a certain stock level for each product ...
3
votes
2answers
70 views

Looking for byte[] in larger byte[] similar to String's IndexOf()?

Say I have a large byte[] and I'm not only looking to see if, but also where, a smaller byte[] is in the larger array. For example: byte[] large = new byte[100]; for (byte i = 0; i < 100; i++) { ...
0
votes
0answers
306 views

breadth first search trouble [solved it]

Working on a breadth first search but cant seem to get it to work. The bfs is searching through an array of linked lists (an adjacency matrix). I followed the algorithm in my text book as well as ...
2
votes
2answers
124 views

What is an efficient algorithm to compare two large lists of data in C++?

I have two lists of times in nanoseconds. Each list can have 10^12 elements or more. My current implementation is to take a subset of both lists, compare the times in that subset using for loops and ...
-1
votes
3answers
107 views

Recursive algorithm to find the smallest element [closed]

I want to write a recursive algorithm to find a smallest element. I draw a binary tree in which leaf represents the elements and internal nodes are smallest elements after comparison. Input to algo ...
1
vote
1answer
56 views

Algorithm to find specific char/letter in array of strings?

So I'm trying to come up with a algorithm to find words with a specific char/letter in an array of strings. If I want words with vowel e, I would get word apple and hello from below set. {apple, ...
1
vote
2answers
100 views

Efficient way to store and search coordinates in python

I'm writing a simple game in python(2.7) in pygame. In this game, I have to store 2D coordinates. The number of these items will start from 0 and increase by 2 in each step. They will increase up to ...
1
vote
3answers
92 views

BFS & DFS - Which vertex to start with? [closed]

I've read pages and pages of information on BFS and DFS algorithms. What none of them say, is which vertex to choose first? For instance, in this image, do the arrows mean you cannot traverse from c ...
1
vote
0answers
63 views

Algorithms for searching all possible combinations of a set of data

I'm currently playing a game where you have 5 armor slots to equip armor pieces. Each of these armor pieces themselves have 'slots' for skills with varying points - an arm piece could have +3 points ...
0
votes
1answer
89 views

Finding smallest number greater than a given number (Interview) [duplicate]

I was given an interview question recently, say u have an ordered list of numbers(the number of elements can be quite big in the order of 100000) and u are to find the smallest number greater than a ...
0
votes
3answers
83 views

Algorithm for string processing

I am looking for a algorithm for string processing, I have searched for it but couldn't find a algorithm that meets my requirements. I will explain what the algorithm should do with an example. There ...
-1
votes
1answer
266 views

Recommended improved match-finding algorithm for Bejeweled game?

I'm trying to determine a sensible method of finding matches of 3, 4, or 5, for each rows and column. The player looks for areas (rows or columns) in the game board where the same "gem" will, after ...
1
vote
4answers
127 views

Efficient histogram implementation using a hash function

Is there a more efficient approach to computing a histogram than a binary search for a non-linear bin distribution? I'm actually only interested in the bit of the algorithm that matches the key ...
0
votes
1answer
47 views

tell sql server to do a binary search?

I kind of want to somehow instruct sql server to perform a search using a specific algorithm. My scenario is something like I have a sorted list of words. I upload this to a database table. I'd want ...
1
vote
1answer
89 views

Graph search algorithm where edges can be blocked by obstacles

I want to find a low-cost path between two vertices on a directed graph where the cost of each edge is the same. Ease of implementing the algorithm and performance time are very important, so I am ...
6
votes
7answers
198 views

What is the fastest algorithm to find an element with highest frequency in an array

I have two input arrays X and Y. I want to return that element of array X which occurs with highest frequency in array Y. The naive way of doing this requires that for each element x of array X, I ...
0
votes
3answers
136 views

Binary tree complexities

I would like to know some complexities of binary search tree, I can't find complete information. I want to know complexities for this operations on a binary search tree 1) to add/insert an element 2) ...
1
vote
1answer
152 views

Tree/Graph Traversal: Find maximum value path

I'm attempting to, given a graph G with integer values and N levels, sum the values from the root to a leaf node. Find the maximal sum of these path values. Children nodes can have multiple parents, ...
1
vote
1answer
93 views

Searching for a number Binary Search

I have a simple issue, which I am stuck on and I am not finding so simple. First step is to find the price of an Option when given inputs. I have done this step. The second step is to guess the ...
0
votes
0answers
61 views

Search 2D table with O(N) cost [closed]

I've been asked to find an algorithm that solves a specific problem and has O(N) cost. I have an adjacency matrix about a directed graph. I have to find the vertex that has no outgoing edges and has ...

1 2 3 4 5 14