peg triangle puzzle solver

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • eggie2486

    peg triangle puzzle solver

    Does anybody know where I can find the source code in C++ for an A.I. that
    solves the peg triangle puzzle (for my personal interest). I am relatively
    new to c++ and i found a very good program in Perl but I have no idea how to
    convert that into c++.


  • Victor Bazarov

    #2
    Re: peg triangle puzzle solver

    "eggie2486" <eggy2486@twcny .rr.com> wrote...[color=blue]
    > Does anybody know where I can find [...][/color]

    www.google.com is a good start


    Comment

    • Bruce

      #3
      Re: peg triangle puzzle solver

      In comp.lang.c++
      "eggie2486" <eggy2486@twcny .rr.com> wrote:
      [color=blue]
      >Does anybody know where I can find the source code in C++ for an A.I. that
      >solves the peg triangle puzzle (for my personal interest). I am relatively
      >new to c++ and i found a very good program in Perl but I have no idea how to
      >convert that into c++.[/color]

      Son of a gun. I wrote a recursive solution version. I posted the code to
      www.codeproject.com about a year ago or so. If you can't find it, is that
      a good email addy? It is not graphical, it merely finds solutions and
      outputs the order of jumps.

      Comment

      • eggie2486

        #4
        Re: peg triangle puzzle solver


        "Bruce" <bruce@nospam.c om> wrote in message
        news:40ac23fa.1 7942750@news.da llas.sbcglobal. net...[color=blue]
        > In comp.lang.c++
        > "eggie2486" <eggy2486@twcny .rr.com> wrote:
        >[color=green]
        > >Does anybody know where I can find the source code in C++ for an A.I.[/color][/color]
        that[color=blue][color=green]
        > >solves the peg triangle puzzle (for my personal interest). I am[/color][/color]
        relatively[color=blue][color=green]
        > >new to c++ and i found a very good program in Perl but I have no idea how[/color][/color]
        to[color=blue][color=green]
        > >convert that into c++.[/color]
        >
        > Son of a gun. I wrote a recursive solution version. I posted the code to
        > www.codeproject.com about a year ago or so. If you can't find it, is that
        > a good email addy? It is not graphical, it merely finds solutions and
        > outputs the order of jumps.
        >[/color]
        thank you, that is exactly what i am looking for, do you remember what you
        named the file?


        Comment

        • Bruce

          #5
          Re: peg triangle puzzle solver

          In comp.lang.c++
          "eggie2486" <eggy2486@twcny .rr.com> wrote:
          [color=blue][color=green]
          >> Son of a gun. I wrote a recursive solution version. I posted the code to
          >> www.codeproject.com about a year ago or so. If you can't find it, is that
          >> a good email addy? It is not graphical, it merely finds solutions and
          >> outputs the order of jumps.
          >>[/color]
          >thank you, that is exactly what i am looking for, do you remember what you
          >named the file?[/color]

          I'll have to email you because I checked today and couldn't find the file.
          It may have been codeguru.com but I didnt' see it there either. Email on
          the way. It is a Visual C++ project but ANSI C++ code so should compile
          under anything.

          Comment

          Working...