tp.prof.classes
Class TableauInt

java.lang.Object
  extended by tp.prof.classes.TableauInt

public class TableauInt
extends java.lang.Object

Une classe utilitaire pour manipuler des tableaux d'entiers.

Author:
jub

Constructor Summary
TableauInt()
           
 
Method Summary
static void affiche(int[] t)
           
static int[] clone(int[] t)
           
static boolean egalite(int[] t1, int[] t2)
           
static int posMax(int[] t)
           
static int rechercheDichoT(int[] t, int elt)
           
static int rechercheS(int[] t, int elt)
           
static void remplissageA(int[] t, int max)
           
static void remplissageI(int[] t)
           
static int somme(int[] t)
           
static int[] tri(int[] t)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TableauInt

public TableauInt()
Method Detail

remplissageA

public static void remplissageA(int[] t,
                                int max)

affiche

public static void affiche(int[] t)

remplissageI

public static void remplissageI(int[] t)

posMax

public static int posMax(int[] t)

somme

public static int somme(int[] t)

rechercheS

public static int rechercheS(int[] t,
                             int elt)

clone

public static int[] clone(int[] t)

tri

public static int[] tri(int[] t)

rechercheDichoT

public static int rechercheDichoT(int[] t,
                                  int elt)

egalite

public static boolean egalite(int[] t1,
                              int[] t2)