Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,940 questions

51,877 answers

573 users

How to reorder an array according to given indexes in Node.js

1 Answer

0 votes
class CArray
{
	printArray(arr) {
	    let size = arr.length;
		
		for (let i = 0; i < size; ++i) {
			process.stdout.write(arr[i] + " ");
		}
		process.stdout.write("\n");
	}
	reorder(arr, indexes, i) {
	    let size = arr.length;
		if (i < size) {
			let data = arr[i];
			this.reorder(arr, indexes, i + 1);
			arr[indexes[i]] = data;
		}
	}
}

const obj = new CArray();
	
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const indexes = [1, 0, 4, 3, 2, 5, 9, 7, 8, 6];
	
obj.printArray(arr);
obj.printArray(indexes);

obj.reorder(arr, indexes, 0);
obj.printArray(arr);




/*
run:

1 2 3 4 5 6 7 8 9 10 
1 0 4 3 2 5 9 7 8 6 
2 1 5 4 3 6 10 8 9 7 

*/

 



answered Nov 28, 2021 by avibootz

Related questions

1 answer 255 views
1 answer 175 views
1 answer 193 views
1 answer 215 views
1 answer 181 views
1 answer 224 views
1 answer 177 views
...