Search:

Type: Posts; User: mike.s

Search: Search took 0.12 seconds.

  1. Replies
    7
    Views
    5,660

    Re: Issue Building Graph in Adjacency Matrix

    cant wait till I have to translate this into 68HC11... Havent even gotten to the search algorithms yet :|
  2. Replies
    7
    Views
    5,660

    Re: Issue Building Graph in Adjacency Matrix

    so I would essentially use this new method to check the vertex before and above? is there no way to move around the ArrayList without creating a new method?

    With the new method, I would loop...
  3. Replies
    7
    Views
    5,660

    Re: Issue Building Graph in Adjacency Matrix

    I am storing the Vertices and the Edges in ArrayLists
    here is my graph class:
    package matrix;

    import java.util.ArrayList;

    public class Graph {

    public ArrayList<Vertex> Vertices;
    ...
  4. Thread: help using loop

    by mike.s
    Replies
    11
    Views
    1,808

    Re: help using loop

    you've posted this twice. i helped you with it in your other thread. you should check it out :)
  5. Re: can someone help me with this while loop assignment

    The reason you are entering more then 5 number is because the while loop will go until someone enters a number<1. Instead the while loop should check if numamount < 5. Then have an if statement check...
  6. Replies
    7
    Views
    5,660

    Issue Building Graph in Adjacency Matrix

    Hey guys and girls,

    Somewhat stuck on this program. Im building an Adjacency Matrix and I cant seem to figure out how to create my buildGraph method. The whole program won't fit here so I have...
Results 1 to 6 of 7