Search:

Type: Posts; User: KobusJordaan

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    1,760

    Markov model

    Hi im really finding it hard to see what is wrong with my code. any help would be greatly appreciated.
    It is for this project : project_3 - RW 144



    import org.w3c.dom.Node;
    public class...
  2. Replies
    2
    Views
    2,914

    Re: Circular Array

    Thank you got it working problem was in my enqueue and dequeue:

    public void enqueue(double x) {
    if (isFull()) {
    throw new RuntimeException("Ring buffer overflow");
    ...
  3. Replies
    2
    Views
    2,914

    Circular Array

    Good day im really struggling to see what is wrong with my code any help would be awesome.


    public class RingBuffer {

    public double[] rb; // items in the buffer
    private int...
Results 1 to 3 of 3