Search:

Type: Posts; User: aaronlbk

Search: Search took 0.08 seconds.

  1. Re: the values of my array are totally modified by an affectation

    public class Test {

    public static void main(String[] args) {
    testLz3();
    public static void testLz3() {

    final static int[]line = { 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0,...
  2. Re: the values of my array are totally modified by an affectation

    public class LZ77
    {
    public static Occurrence plusLongueOccurrence(
    int[] t,
    int positionCourante,
    int tailleFenetre
    )


    {
  3. Re: the values of my array are totally modified by an affectation

    Can I provide you all my code? For testing , there is two function that should be called.
  4. Re: the values of my array are totally modified by an affectation

    Well, that's the output of my program
    (10,4)2(10,4)2(10,4)2(10,4)2(10,4)2(10,4)2(10,4)2
    Normally, I should obtain this:
    (0,0)0(0,0)1(2,2)1(5,3)0(4,4)0(10,1)1(10,4)2
  5. the values of my array are totally modified by an affectation

    Hello,
    I am new in java programming. I'm doing an exercise on a Mooc and I have some trouble with my code.
    The following code is supposed to return an array and I will print the values that are...
Results 1 to 5 of 5