p5.js NumberDict minKey() Método

El método minKey() de p5.NumberDict en p5.js se usa para encontrar el valor más bajo de la clave en un diccionario de números. Un par clave-valor es un conjunto de dos valores que se asignan entre sí. Se puede acceder a estos valores consultando este diccionario utilizando la parte clave del par. Un diccionario de números puede almacenar varios pares clave-valor a los que se puede acceder mediante los métodos del diccionario.

Sintaxis:

minKey()

Parámetros:  Esta función no acepta ningún parámetro.

Valor devuelto: Devuelve un valor numérico que especifica la clave más baja en el diccionario de números.

Los ejemplos a continuación ilustran el método minKey() en p5.js:

Ejemplo 1:

Javascript

function setup() {
  createCanvas(500, 300);
  textSize(16);
  
  text("Click on the button to add new " +
       "values or get the lowest key",
       20, 20);
  
  text("Key:", 20, 60);
  text("Value:", 160, 60);
  
  key_input = createInput('1');
  key_input.position(70, 50);
  key_input.size(40);
  
  val_input = createInput('1');
  val_input.position(220, 50);
  val_input.size(40);
  
  setBtn = createButton("Add new item");
  setBtn.position(30, 100);
  setBtn.mouseClicked(createNewDict);
  
  getBtn = createButton("Get Lowest Key");
  getBtn.position(160, 100);
  getBtn.mouseClicked(getLowestKey);
  
  // Create a Number Dictionary initially
  numDict = createNumberDict(100, 0);
}
  
function createNewDict() {
  clear();
  
  let key = int(key_input.value());
  let val = int(val_input.value());
  
  numDict.set(key, val);
  
  text("New key-value added to dictionary",
       20, 160);
  
  text("Key:", 20, 60);
  text("Value:", 160, 60);
  text("Click on the button to add new " +
       "values or get the lowest key",
       20, 20);
}
  
function getLowestKey() {
  
  // Get the lowest key in the dictionary
  let lowestKey = numDict.minKey();
  
  // Display the lowest key
  text("The lowest key in the dictionary is: "
       + lowestKey, 20, 200);
  
  text("Key:", 20, 60);
  text("Value:", 160, 60);
  text("Click on the button to add new " +
       "values or get the lowest key",
       20, 20);
}

Producción:

Ejemplo 2:

Javascript

function setup() {
  createCanvas(550, 300);
  textSize(16);
  
  text("Click on the button to create a " +
       "new dictionary and get the lowest key",
       20, 20);
  
  setBtn =
    createButton("Create random dictionary");
  setBtn.position(30, 40);
  setBtn.mouseClicked(createNewDict);
  
  getBtn = createButton("Get Lowest Key");
  getBtn.position(300, 40);
  getBtn.mouseClicked(getLowestKey);
}
  
function createNewDict() {
  clear();
  
  // Create an object with random values
  let obj = {};
  for (let i = 0; i < 5; i++) {
    let rk = ceil(Math.random() * 100);
    let rn = floor(Math.random() * 100);
    obj[rk] = rn;
  
    text("Key: " + rk + " : Value: " +
         rn, 40, 120 + 20 * i);
  }
  
  // Create a number dict using the
  // above values
  numDict = createNumberDict(obj);
  
  text("New Dictionary created with values",
       20, 80);
  
  text("Click on the button to create a " +
       "new dictionary and get the lowest key",
       20, 20);
}
  
function getLowestKey() {
  
  // Get the lowest key in the dictionary
  let lowestKey = numDict.minKey();
  
  // Display the lowest key
  text("The lowest key in the dictionary is: " +
       lowestKey, 20, 240);
  
  text("Click on the button to create a " +
       "new dictionary and get the lowest key",
       20, 20);
}

Producción:

Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/ referencia/#/p5.NumberDict/minKey

Publicación traducida automáticamente

Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *