2009-05-25 13 views
1

Ich habe eine Karte, wo Coords wie so definiert:Java String von Karte von XY-Koordinaten

class Coords { 
     int x; 
     int y; 
     public boolean equals(Object o) { 
      Coords c = (Coords)o; 
      return c.x==x && c.y==y; 
     } 
     public Coords(int x, int y) { 
      super(); 
      this.x = x; 
      this.y = y; 
     } 
     public int hashCode() { 
      return new Integer(x+"0"+y); 
     } 
    } 

(. Nicht sehr gut, ich weiß, bitte necken mich nicht) Wie kann ich ein jetzt erstellen String, wo die Zeichen aus dieser Karte abgebildet, zum Beispiel:

Map<Coords, Character> map = new HashMap<Coords, Character>(); 
map.put(new Coords(0,0),'H'); 
map.put(new Coords(1,0),'e'); 
map.put(new Coords(2,0),'l'); 
map.put(new Coords(3,0),'l'); 
map.put(new Coords(4,0),'o'); 
map.put(new Coords(6,0),'!'); 
map put(new Coords(6,1),'!'); 
somehowTransformToString(map); //Hello ! 
           //  ! 

Danke,
Isaac Waller
(Anmerkung - es ist nicht Hausaufgaben)

+0

Was ist Ihre Ausgabe? STD-Konsole? –

+0

Eigentlich ein Textfeld-Steuerelement. –

+0

(EditText auf Android) –

Antwort

6
  1. erstellen Komparator, die Coords von y sortieren und dann x:

    int d = c1.y - c2.y; 
    if (d == 0) d = c1.x - c2.y; 
    return d; 
    
  2. erstellen sortierten Karte:

    TreeMap<Coords, Character> sortedMap = new TreeMap(comparator); 
    sortedMap.putAll(map); // copy values from other map 
    
  3. Drucke der Wert der Karte in der Reihenfolge:

    for (Character c: map.values()) System.out.print(c); 
    
  4. Wenn Sie Zeilenumbrüche benötigen:

    int y = -1; 
    for (Map.Entry<Coords, Character> e: map.entrySet()) { 
        if (e.y != y) { 
         if (y != -1) System.out.println(); 
         y = e.y; 
        } 
        System.out.print(c); 
    } 
    
+0

Dies funktioniert für X, aber dann wird Y ignoriert. –

+0

Es ist nicht AddAll, es ist putAll –

+0

putAll(): Fixed. Der Vergleicher wird zuerst nach Y sortieren. Wenn Y für zwei Zeichen gleich ist, werden sie nach X sortiert. Ich bin mir also nicht sicher, was Sie mit "Dies funktioniert für X" meinen. –

1

Ich schlage vor, Sie eine toString-Methode hinzufügen oder die Point-Klasse verwenden, um Coord.

Map<Point, Character> map = new HashMap<Point , Character>(); 
map.put(new Point(0,0),'H'); 
map.put(new Point(1,0),'e'); 
map.put(new Point(2,0),'l'); 
map.put(new Point(3,0),'l'); 
map.put(new Point(4,0),'o'); 
map.put(new Point(6,0),'!'); 
map put(new Point(6,1),'!'); 
String text = map.toString(); 

Wenn Sie die Zeichen Layout möchten können Sie mehrdimensionale Array.

char[][] grid = new char[7][2]; 
grid[0][0] ='H'; 
grid[0][1] ='e'; 
grid[0][2] ='l'; 
grid[0][3] ='l'; 
grid[0][4] ='o'; 
grid[0][6] ='!'; 
grid[1][6] ='!'; 
for(char[] line: grid) System.out.println(new String(line));