在 javascript 中对数组进行排序的算法

Algorithm to sort an array in javascript

我很难找到解决方案。

我有一个类似的数组。

// Original array 
const orig_array = ["2", "10", "01A", "1A", "02B", "1","03B"]; 

// The sorted array needs to be like this. 
sorted_array = ["1", "1A", "01A", "2", "02B", "03B", "10"]; 

我试过编写这样的自定义排序函数,但找不到解决方案。感谢您的帮助。

 const orig_array = ["2", "10", "01A", "1A", "02B", "1","03B"];

 const sorted_array = orig_array.sort((a, b) => {
  if (a - b) {
   return a - b;
  }
 if (a.localeCompare(b) === -1) {
  return a.length - b.length;
 } else {
 return 1;
}
});
console.log(sorted_array);

您可以先将 parseInt 应用于两个字符串以获得第一个数字部分并将它们相减。如果数字部分相等,则减去长度。

const orig_array = ["2", "10", "01A", "1A", "02B", "1","03B"]; 
console.log(orig_array.sort((a,b)=>parseInt(a)-parseInt(b)||a.length-b.length));