Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ค้นหาคำในเมทริกซ์ใน JavaScript


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับอาร์เรย์ของอาร์เรย์ของอักขระเป็นอาร์กิวเมนต์แรกและสตริงเป็นอาร์กิวเมนต์ที่สอง

ฟังก์ชันควรค้นหาว่ามีอักขระอยู่ในเมทริกซ์หรือไม่ การรวมแบบไม่ซ้ำกัน ซึ่งให้สตริงที่ให้ไว้กับฟังก์ชันเป็นอาร์กิวเมนต์ที่สอง

หากมีชุดค่าผสมดังกล่าว ฟังก์ชันของเราควรคืนค่า true หรือ false มิฉะนั้น

ตัวอย่างเช่น −

หากอาร์เรย์อินพุตและสตริงเป็น −

const arr = [
   ['s', 'd', 'k', 'e'],
   ['j', 'm', 'o', 'w'],
   ['y', 'n', 'l']
];
const str = 'don';

จากนั้นผลลัพธ์ควรเป็น −

const output = false;

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

const arr = [
   ['s', 'd', 'k', 'e'],
   ['j', 'm', 'o', 'width'],
   ['y', 'n', 'l']
];
const str = 'don';
const containsWord = (arr = [], str = '') => {
   if (arr.length === 0){
      return false;
   };
   const height = arr.length;
   const width = arr[0].length;
   const dirs = [[-1, 0], [0, 1], [1, 0], [0, -1]];
   const tryWord = (x, y, k) => {
      if (arr[x][y] !== str[k]) return false;
      if (k === str.length - 1) return true;
      arr[x][y] = '*';
      for (const [dx, dy] of dirs) {
         const i = x + dx;
         const j = y + dy;
         if (i >= 0 && i < height && j >= 0 && j < width) {
            if (tryWord(i, j, k + 1)) return true;
         }
      }
      arr[x][y] = str[k]; // reset
      return false;
   };
   for (let i = 0; i < height; i++) {
      for (let j = 0; j < width; j++) {
         if (tryWord(i, j, 0)) return true;
      }
   }
   return false;
};
console.log(containsWord(arr, str));

ผลลัพธ์

ต่อไปนี้เป็นเอาต์พุตคอนโซล -

false