Tagged Questions

1
vote
2answers
86 views

Finding the content of HTML section document

This is not really a programming question, more of an algorithmic one. The problem: Finding the "content" section of an HTML page. By "content" I mean the dom that contains the …
1
vote
2answers
44 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 heuris …
3
votes
3answers
103 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 …
2
votes
7answers
238 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 won …
3
votes
6answers
311 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 bes …
0
votes
1answer
34 views

What can be used as a heuristic for Bubblet game?

I am planning to make a Bubblet game in Java, because I simply love the game. What can be used as a heuristic for the game? I will make it 30x30 or bigger, and I cannot figure out …
1
vote
2answers
44 views

detecting binary files and character encodings in zipfiles

When reading zipfiles (using Java ZipInputStream or any other library) from an unknown source is there any way of detecting which entries are "character data" (and if so the encodi …
5
votes
3answers
123 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?
0
votes
2answers
229 views

Recursion Tree, Solving Recurrence Equations

As far as I know There are 4 ways to solve recurrence equations : 1- Recursion trees 2- Substitution 3 - Iteration 4 - Derivative We are asked to use Substitution, which we will …
2
votes
2answers
352 views

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

Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Descriptio …
0
votes
1answer
130 views

If optimizations are enabled will the JIT always inline this method?

I am not expecting a definite yes or no. Any knowledge you might have I will consider as an answer. private String CalculateCharge(Nullable<Decimal> bill, Nullable<Decima …
3
votes
3answers
122 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 …
3
votes
1answer
78 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, …
2
votes
2answers
269 views

Accurate A* search heuristic for isometric maps?

I have written an implementation of the A* search algorithm. The problem is that the heuristic I'm currently using only works accurately on square grids. As my map is isometric, th …
2
votes
8answers
176 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. Checki …

1 2 3 next
15 30 50 per page