Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
10answers
6k views

What is the Difference between a Heuristic and an Algorithm?

What is the Difference between a Heuristic and an Algorithm?
24
votes
10answers
19k views

ASP.NET MVC: No parameterless constructor defined for this object

Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Description: An unhandled ...
18
votes
1answer
376 views

Manhattan distance is over estimating and making me crazy

I'm implementing a-star algorithm with Manhattan distance to solve the 8-puzzle (in C). It seems to work very well and passes a lot of unit tests but it fails to find the shortest path in one case (it ...
14
votes
7answers
2k views

Rule of thumb for choosing an implementation of a Java Collection?

Anyone have a good rule of thumb for choosing between different implementations of Java Collection interfaces like List, Map, or Set? For example, generally why or in what cases would I prefer to use ...
13
votes
3answers
2k views

Algorithm to detect photo orientation

I would like to rotate photos automatically, even when EXIF metadata about the image orientation is not available. Are there any good algorithms for detecting the orientation of a photo? The images ...
12
votes
12answers
2k views

What are some games with fairly simple heuristics to evaluate positions?

I'm teaching a kid programming, and am introducing some basic artificial intelligence concepts at the moment. To begin with we're going to implement a tic-tac-toe game that searches the entire game ...
11
votes
7answers
313 views

What is a good heuristic for determining the tab width used in a source file?

I would like to determine the tab width used in source files indented with spaces. This is not hard for files with particularly regular indentation, where the leading spaces are only used for ...
10
votes
2answers
290 views

What's a good set of heuristics for threading tweets?

Everyone knows, if you want to thread emails you use Jamie Zawinski's algorithm. But it's a new century, and there's a new messaging service. What's the best algorithm for threading status updates ...
10
votes
8answers
6k views

Design patterns for converting recursive algorithms to iterative ones

Are there any general heuristics, tips, tricks, or common design paradigms that can be employed to convert a recursive algorithm to an iterative one? I know it can be done, I'm wondering if there are ...
9
votes
4answers
260 views

Packing arbitrary polygons within an arbitrary boundary

I was wondering if anybody could point me to the best algorithm/heuristic which will fit my particular polygon packing problem. I am given a single polygon as a boundary (convex or concave may also ...
9
votes
2answers
240 views

Algorithm for the game of Chomp

I am writing a program for the game of Chomp. You can read the description of the game on Wikipedia, however I'll describe it briefly anyway. We play on a chocolate bar of dimension n x m, i.e. the ...
9
votes
7answers
415 views

Travelling Salesman with multiple salesmen?

I have a problem that has been effectively reduced to a Travelling Salesman Problem with multiple salesmen. I have a list of cities to visit from an initial location, and have to visit all cities with ...
9
votes
6answers
1k views

Is there anything for Python that is like readability.js?

I'm looking for a package / module / function etc. that is approximately the Python equivalent of Arc90's readability.js http://lab.arc90.com/experiments/readability ...
8
votes
4answers
313 views

Find set of numbers in one collection that adds up to a number in another

For a game I'm making I have a situation where I have a list of numbers – say [7, 4, 9, 1, 15, 2] (named A for this) – and another list of numbers – say [11, 18, 14, 8, 3] (named B) ...
8
votes
8answers
946 views

What is the state of the art in computer chess tree searching?

I'm not interested in tiny optimizations giving few percents of the speed. I'm interested in the most important heuristics for alpha-beta search. And most important components for evaluation function. ...
8
votes
2answers
257 views

When to use and not to use each development paradigm?

Given the various methodical approaches to development, can we get some heuristics together on which ones are appropriate in what circumstances, e.g. case-driven development model-driven development ...
7
votes
4answers
1k views

What is the difference between monotonicity and the admissibility of a heuristic?

I'm reading over my AI textbook and I'm curious about what the difference is between monotonicity and admissibility of heuristics (I know they aren't mutually exclusive). As far as I can tell, an ...
6
votes
7answers
199 views

Letting the code try different things until it succeeds, neatly

This is the second time I found myself writing this kind of code, and decided that there must be a more readable way to accomplish this: My code tries to figure something out, that's not exactly well ...
6
votes
2answers
549 views

Finding minimum cut-sets between bounded subgraphs

If a game map is partitioned into subgraphs, how to minimize edges between subgraphs? I have a problem, Im trying to make A* searches through a grid based game like pacman or sokoban, but i need to ...
6
votes
6answers
496 views

Heuristic algorithm for load balancing among threads

I'm working on a multi-threaded program where I have a number of worker threads performing tasks of unequal length. I want to load-balance the tasks to ensure that they do roughly the same amount of ...
6
votes
2answers
239 views

Teleporting Traveler, Optimal Profit over time Problem

I'm new to the whole traveling-salesman problem as well as stackoverflow so let me know if I say something that isn't quite right. Intro: I'm trying to code a profit/time-optimized multiple-trade ...
6
votes
4answers
1k views

Are all scheduling problems NP-Hard?

I know there are some scheduling problems out there that are NP-hard/NP-complete ... however, none of them are stated in such a way to show this situation is also NP. If you have a set of tasks ...
6
votes
3answers
450 views

In game programming, how can I test whether a heuristic used is consistent or not?

I have thought of some heuristics for a big (higher dimensions) tic-tac-toe game. How do I check which of them are actually consistent? What is meant by consistency anyways?
5
votes
3answers
156 views

Are there any CSS padding heuristics that I can follow?

I have a simple problem: I have an image inside of a div. In order to make the page more aesthetically pleasing, I'm going to add some additional padding to the image. Rather than eyeball it, I'd ...
5
votes
1answer
437 views

Given a document, select a relevant snippet

When I ask a question here, the tool tips for the question returned by the auto search given the first little bit of the question, but a decent percentage of them don't give any text that is any more ...
5
votes
2answers
321 views

How to strip headers/footers from Project Gutenberg texts?

I've tried various methods to strip the license from Project Gutenberg texts, for use as a corpus for a language learning project, but I can't seem to come up with an unsupervised, reliable approach. ...
4
votes
4answers
115 views

concrete examples of heuristics

What are concrete examples (e.g. Alpha-beta pruning, example:tic-tac-toe and how is it applicable there) of heuristics. I already saw an answered question about what heuristics is but I still don't ...
4
votes
2answers
102 views

Optimise 3D placement of rooms?

Given a graph where the nodes represent 3x3x1 rooms and the vertices represent a need for closeness. How should they be placed in 3D space to optimise overall closeness? Example (randomish) ...
4
votes
3answers
569 views

Probability density function problem, from a paper, implemented using C++, not working as intended

So i'm implementing a heuristic algorithm, and i've come across this function. I have an array of 1 to n (0 to n-1 on C, w/e). I want to choose a number of elements i'll copy to another array. Given ...
4
votes
3answers
577 views

Are there any open source Hierarchical Temporal Memory libraries?

I'm potentitally interested in the using Hierarchical temporal memory heuristic to solve a research problem I am working on. Some more details about it can be found here: ...
4
votes
2answers
581 views

Thread management advice - Is TPL a good idea?

I'm hoping to get some advice on the use of thread managment and hopefully the task parallel library, because I'm not sure I've been going down the correct route. Probably best is that I give an ...
4
votes
9answers
330 views

Fewest number of turns heuristic

Is there anyway to ensure the that the fewest number of turns heuristic is met by anything except a breadth first search? Perhaps some more explanation would help. I have a random graph, much like ...
4
votes
1answer
798 views

How do the Antivirus programs detect the EICAR Test Virus?

The EICAR test virus is used to test the functionality of the anti virus programs. In order to detect it as a virus, Should the antivirus program have the virus definition for the test virus OR The ...
4
votes
2answers
453 views

What should you name your controller in MVC? When should you create a new one?

I have a question that really applies to any MVC framework, I'm using the Zend Framework MVC. When exactly should you create a new controller? What exactly should the Controller layer define? ...
4
votes
1answer
667 views

Traveling Salesman - Nearest Neighbor vs Genetic DEATHMATCH

Over the last few days I have noted a few web sites that demonstrated TS solution using genetic algorithms. I am looking for your opinion which is better for this particular problem. Heuristics vs ...
4
votes
6answers
444 views

Optimizing locations of on-disk data for sequential access

I need to store large amounts of data on-disk in approximately 1k blocks. I will be accessing these objects in a way that is hard to predict, but where patterns probably exist. Is there an algorithm ...
4
votes
8answers
881 views

How to search for a person's name in a text? (heuristic)

I have a huge list of person's full names that I must search in a huge text. Only part of the name may appear in the text. And it is possible to be misspelled, misstyped or abreviated. The text has ...
3
votes
1answer
38 views

Adding non monotonic heuristics to A* php implimentation

I'm using aaz's A* search algorithm in PHP to help me find the shortest route accross a 3D graph of nodes. It does it well but what it returns is the first route it finds which may not be the ...
3
votes
2answers
124 views

better heuristic then A*

hey guys am enrolled in stenford's ai-class.com and have just learned in my first week of lecture about a* algorithm and how it's better used then other search algo. I also show one of my class mate ...
3
votes
2answers
102 views

Is there any “Hello World” example type basic tutorial for heuristics or Meta Heuristics or optimization techniques

I am trying hard but still i have not found a very basic tutorial from where i can start with Meta heuristics and optimization problems. I have seen many books but they are full of Maths. I know that ...
3
votes
3answers
98 views

How to check user choice algorithm

I have an algorithm that chooses a list of items that should fit the user's likings. I'll skip the algorithm's details because of confidentiality issues... Now, I'm trying to think of a way to check ...
3
votes
1answer
116 views

What is the most effective way to find the node with the lowest value to expand in A star with heuristic?

im doing the 8 puzzle solver with the a star algorithm. I implement Manhattan and misplaced heuristic functions in this solver. In some cases, the solver works fine. But in some cases, it takes a lot ...
3
votes
2answers
189 views

algorithm for computing the relevance of a keyword to a short text (50 - 100 words)

I want to compute the relevance of a keyword to a short description text. What would be the best approach in terms of efficiency and ease of implementation. I have a really tight deadline and using ...
3
votes
2answers
982 views

Manhattan Heuristic function for A-star (A*)

I found this algorithm here. I have a problem, I cant seem to understand how to set up and pass my heuristic function. static public Path<TNode> AStar<TNode>(TNode start, TNode ...
3
votes
3answers
452 views

Number of simple mutations to change one string to another?

I'm sure you've all heard of the "Word game", where you try to change one word to another by changing one letter at a time, and only going through valid English words. I'm trying to implement an A* ...
3
votes
2answers
108 views

Measuring popularity for a particular post?

I'm trying to measure the popularity of a post but there's no current system in place that can do that so that means I have to create one. Can anyone guide me on creating a heuristic that measures ...
3
votes
7answers
2k views

What algorithm would you use to solve a very large tic-tac-toe game?

A small (3x3, 4x4) tic-tac-toe can be easily solved by considering all the cases. But for example, you have a 30x30 tic-tac-toe. What algorithm would you use to decide the next best move in that case? ...
3
votes
3answers
141 views

Web Interfaces: What is a good way to display many static fields?

My web applications have pages that display many static fields. I know that poor layout invariably leads to information overload and poor readability. My Question: Are there any best-practices ...
3
votes
8answers
301 views

Heuristics to discover spammers/bots (In forums, blogs etc)

The ways I can think of are: Measure the time between actions. Compare the posts' content (if they're too similar to each other) or, better yet, only the posted links. Checking the distribution ...
2
votes
2answers
57 views

Quick alternatives to floating point multiplication to calculate percentages

I'm writing some code on an Arduino that needs to run fast and make rough approximations to percentages of integers. For example, given a number I want to find 90% of it, or 70% or 30% etc. The ...

1 2 3