A star Implementation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dnanchin
    New Member
    • May 2007
    • 2

    #1

    A star Implementation

    Hi,
    This is Santhosh Kumar ,
    I am in great need of Java code for A star implementiaton.
    Please any one help me in this regard?
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by dnanchin
    Hi,
    This is Santhosh Kumar ,
    I am in great need of Java code for A star implementiaton.
    Please any one help me in this regard?
    We don't give out codes here. We simply help you to get your code right. Post the attempt that you've made first and make sure you read the guidelines.

    Comment

    • JosAH
      Recognized Expert MVP
      • Mar 2007
      • 11453

      #3
      Originally posted by r035198x
      We don't give out codes here.
      I'll make an exception to the rule just once:[code=java]
      System.out.prin tln("*");
      [/code]

      kind regards,

      Jos

      Comment

      • r035198x
        MVP
        • Sep 2006
        • 13225

        #4
        Originally posted by JosAH
        I'll make an exception to the rule just once:[code=java]
        System.out.prin tln("*");
        [/code]

        kind regards,

        Jos
        You could at least have put that in a class.

        Comment

        • blazedaces
          Contributor
          • May 2007
          • 284

          #5
          Originally posted by r035198x
          You could at least have put that in a class.
          Don't forget to comment your code either!

          Comment

          • JosAH
            Recognized Expert MVP
            • Mar 2007
            • 11453

            #6
            Originally posted by blazedaces

            Originally posted by r035198x
            You could at least have put that in a class.
            Don't forget to comment your code either!
            Ok, ok;

            [code=java]
            /** this class puts that in it. */
            public class This {
            private This that;
            /** puts that in this class at construction time. */
            public This(This that) { this.that= that; }
            } // end of This that puts that in the class.
            [/code]

            kind regards,

            Jos ;-)

            Comment

            Working...