ধরুন, আমাদের কাছে এই ধরনের বস্তুর একটি অ্যারে আছে −
const arr = [ { "parentIndex": '0' , "childIndex": '3' , "parent": "ROOT", "child": "root3" }, { "parentIndex": '3' , "childIndex": '2' , "parent": "root3" , "child": "root2" }, { "parentIndex": '3' , "childIndex": '1' , "parent": "root3" , "child": "root1" } ];
আমাদের একটি জাভাস্ক্রিপ্ট ফাংশন লিখতে হবে যা এমন একটি অ্যারে অবজেক্টে নেয়। ফাংশনটি তখন রিকারশন ব্যবহার করবে এবং উপরের JSON কে একটি Tree−structure এ রূপান্তর করবে।
গাছের কাঠামো −
এর মত দেখতে হবেnodeStructure: { text: { name: "root3" }, children: [ { text: { name: "root2" } }, { text: { name: "root1" } } ] } };
উদাহরণ
এর জন্য কোড হবে −
const arr = [ { "parentIndex": '0' , "childIndex": '3' , "parent": "ROOT", "child": "root3" }, { "parentIndex": '3' , "childIndex": '2' , "parent": "root3" , "child": "root2" }, { "parentIndex": '3' , "childIndex": '1' , "parent": "root3" , "child": "root1" } ]; const partial = (arr = [], condition) => { const result = []; for (let i = 0; i < arr.length; i++) { if(condition(arr[i])){ result.push(arr[i]); } } return result; } const findNodes = (parentKey,items) => { let subItems = partial(items, n => n.parent === parentKey); const result = []; for (let i = 0; i < subItems.length; i++) { let subItem = subItems[i]; let resultItem = { text: {name:subItem.child} }; let kids = findNodes(subItem.child , items); if(kids.length){ resultItem.children = kids; } result.push(resultItem); } return result; } console.log(JSON.stringify(findNodes('ROOT', arr), undefined, 4));
আউটপুট
এবং কনসোলে আউটপুট হবে −
[ { "text": { "name": "root3" }, "children": [ { "text": { "name": "root2" } }, { "text": { "name": "root1" } } ] } ]