Click here to Skip to main content
15,914,500 members
Home / Discussions / Algorithms
   

Algorithms

 
QuestionHow to find an efficient algorithm to move in a Blind Maze Pin
amirsharifzadeh29-Feb-16 7:25
amirsharifzadeh29-Feb-16 7:25 
AnswerRe: How to find an efficient algorithm to move in a Blind Maze Pin
Sascha Lefèvre29-Feb-16 8:14
professionalSascha Lefèvre29-Feb-16 8:14 
GeneralRe: How to find an efficient algorithm to move in a Blind Maze Pin
amirsharifzadeh29-Feb-16 8:27
amirsharifzadeh29-Feb-16 8:27 
GeneralRe: How to find an efficient algorithm to move in a Blind Maze Pin
Sascha Lefèvre29-Feb-16 8:34
professionalSascha Lefèvre29-Feb-16 8:34 
GeneralRe: How to find an efficient algorithm to move in a Blind Maze Pin
Sascha Lefèvre29-Feb-16 8:46
professionalSascha Lefèvre29-Feb-16 8:46 
GeneralRe: How to find an efficient algorithm to move in a Blind Maze Pin
Patrice T29-Feb-16 9:34
mvePatrice T29-Feb-16 9:34 
AnswerRe: How to find an efficient algorithm to move in a Blind Maze Pin
Patrice T29-Feb-16 9:44
mvePatrice T29-Feb-16 9:44 
QuestionCode for copying and saving link? Pin
Member 1234748827-Feb-16 6:23
Member 1234748827-Feb-16 6:23 
AnswerRe: Code for copying and saving link? Pin
Gerry Schmitz27-Feb-16 8:01
mveGerry Schmitz27-Feb-16 8:01 
QuestionRe: Code for copying and saving link? Pin
Richard MacCutchan27-Feb-16 21:06
mveRichard MacCutchan27-Feb-16 21:06 
QuestionGeneric Exam questions... Pin
AndreaLR9-Feb-16 4:25
AndreaLR9-Feb-16 4:25 
AnswerRe: Generic Exam questions... Pin
Nathan Minier12-Feb-16 2:02
professionalNathan Minier12-Feb-16 2:02 
GeneralBeizier surface Pin
SSETH7-Feb-16 5:39
SSETH7-Feb-16 5:39 
GeneralRe: Beizier surface Pin
Richard MacCutchan7-Feb-16 6:10
mveRichard MacCutchan7-Feb-16 6:10 
GeneralRe: Beizier surface Pin
SSETH7-Feb-16 22:05
SSETH7-Feb-16 22:05 
GeneralRe: Beizier surface Pin
Richard MacCutchan8-Feb-16 3:04
mveRichard MacCutchan8-Feb-16 3:04 
GeneralRe: Beizier surface Pin
SSETH8-Feb-16 22:30
SSETH8-Feb-16 22:30 
GeneralRe: Beizier surface Pin
Member 1238261210-Mar-16 0:43
Member 1238261210-Mar-16 0:43 
GeneralRe: Beizier surface Pin
Kenneth Haugland10-Mar-16 1:15
mvaKenneth Haugland10-Mar-16 1:15 
QuestionPiece wise Bezier Spline curve Pin
SSETH7-Feb-16 5:35
SSETH7-Feb-16 5:35 
GeneralRe: Piece wise Bezier Spline curve Pin
harold aptroot9-Feb-16 4:25
harold aptroot9-Feb-16 4:25 
AnswerRe: Piece wise Bezier Spline curve Pin
Kenneth Haugland9-Mar-16 5:38
mvaKenneth Haugland9-Mar-16 5:38 
QuestionDecision tree on random examples? Pin
Plasticstone6-Feb-16 5:36
Plasticstone6-Feb-16 5:36 
Does it make any sense to test decision tree on dataset generated randomly? example: (the output "true"/"false" is not conditioned on parameters 1-10)
C#
for (int i = 0; i < l; i++)
{
    string[] new_ex = new string[11];
    new_ex[0] = ThreadSafeRandom.ThisThreadsRandom.Next(60)%5 == 1 ? "true" : "false";
    for (int r = 1; r < 5; r++)
        new_ex[r] = (ThreadSafeRandom.ThisThreadsRandom.Next(60)%3).ToString();
    for (int r = 5; r < 7; r++)
        new_ex[r] = (ThreadSafeRandom.ThisThreadsRandom.Next(60)%3).ToString();
    for (int r = 7; r < 9; r++)
        new_ex[r] = (ThreadSafeRandom.ThisThreadsRandom.Next(20)%5).ToString();
    for (int r = 9; r < 11; r++)
        new_ex[r] = (ThreadSafeRandom.ThisThreadsRandom.Next(4)).ToString();
    dataset.Add(new_ex);
}

SuggestionRe: Decision tree on random examples? Pin
Gerry Schmitz6-Feb-16 6:17
mveGerry Schmitz6-Feb-16 6:17 
GeneralRe: Decision tree on random examples? Pin
Plasticstone6-Feb-16 6:55
Plasticstone6-Feb-16 6:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.