freeCodeCamp/curriculum/challenges/italian/10-coding-interview-prep/data-structures/create-a-map-data-structure.md

5.1 KiB

id title challengeType forumTopicId dashedName
8d5823c8c441eddfaeb5bdef Crea una struttura dati Mappa 1 301629 create-a-map-data-structure

--description--

Le prossime sfide riguarderanno mappe e tabelle di hash. Le mappe sono strutture dati che memorizzano coppie chiave-valore. In JavaScript, questi sono disponibili per noi come oggetti. Le mappe forniscono una rapida ricerca degli elementi memorizzati in base ai valori delle chiavi (key) e sono strutture di dati molto comuni e utili.

--instructions--

Facciamo un po' di pratica nel creare la nostra mappa. Poiché gli oggetti JavaScript forniscono una struttura di mappa molto più efficiente di qualsiasi cosa potremmo scrivere qui, questo è inteso principalmente come un esercizio di apprendimento. Tuttavia, gli oggetti JavaScript ci forniscono solo determinate operazioni. E se volessimo definire operazioni personalizzate? Utilizzare l'oggetto Map fornito qui come un wrapper intorno a un object di JavaScript. Creare i seguenti metodi e operazioni sull'oggetto mappa:

  • add accetta una coppia key, value da aggiungere alla mappa.
  • remove accetta una chiave e rimuove la coppia key, value associata
  • get accetta una key e ritorna il value memorizzato
  • has accetta una key e restituisce true se la chiave esiste o false se non esiste.
  • values restituisce un array di tutti i valori nella mappa
  • size restituisce il numero di elementi nella mappa
  • clear svuota la mappa

--hints--

La struttura dati Map dovrebbe esistere.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    return typeof test == 'object';
  })()
);

L'oggetto Map dovrebbe seguire i seguenti metodi: add, remove, get, has, values, clear, and size.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    return (
      typeof test.add == 'function' &&
      typeof test.remove == 'function' &&
      typeof test.get == 'function' &&
      typeof test.has == 'function' &&
      typeof test.values == 'function' &&
      typeof test.clear == 'function' &&
      typeof test.size == 'function'
    );
  })()
);

Il metodo add dovrebbe aggiungere degli oggetti alla mappa.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    test.add(5, 6);
    test.add(2, 3);
    test.add(2, 5);
    return test.size() == 2;
  })()
);

Il metodo has dovrebbe restituire true per gli oggetti aggiunti e false per quelli assenti.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    test.add('test', 'value');
    return test.has('test') && !test.has('false');
  })()
);

Il metodo get dovrebbe accettare le chiavi come input e dovrebbe restituire i valori associati.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    test.add('abc', 'def');
    return test.get('abc') == 'def';
  })()
);

Il metodo values dovrebbe restituire tutti i valori immagazzinati nella mappa come stringhe in un array.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    test.add('a', 'b');
    test.add('c', 'd');
    test.add('e', 'f');
    var vals = test.values();
    return (
      vals.indexOf('b') != -1 &&
      vals.indexOf('d') != -1 &&
      vals.indexOf('f') != -1
    );
  })()
);

Il metodo clear dovrebbe svuotare la mappa e il metodo size dovrebbe restituire il numero di elementi presenti nella mappa.

assert(
  (function () {
    var test = false;
    if (typeof Map !== 'undefined') {
      test = new Map();
    }
    test.add('b', 'b');
    test.add('c', 'd');
    test.remove('asdfas');
    var init = test.size();
    test.clear();
    return init == 2 && test.size() == 0;
  })()
);

--seed--

--seed-contents--

var Map = function() {
  this.collection = {};
  // Only change code below this line

  // Only change code above this line
};

--solutions--

var Map = function() {
    this.collection = {};
    // Only change code below this line

    this.add = function(key,value) {
      this.collection[key] = value;
    }

    this.remove = function(key) {
      delete this.collection[key];
    }

    this.get = function(key) {
      return this.collection[key];
    }

    this.has = function(key) {
      return this.collection.hasOwnProperty(key)
    }

    this.values = function() {
      return Object.values(this.collection);
    }

    this.size = function() {
      return Object.keys(this.collection).length;
    }

    this.clear = function() {
      for(let item of Object.keys(this.collection)) {
        delete this.collection[item];
      }
    }
    // Only change code above this line
};