Lua排序表值升序

问题描述 投票:1回答:1

我有一张桌子,我需要对sel_notes [i]进行排序。按音高升序排列。这些是在Midi编辑器中选择的Midi音符。

sel注释表:

sel_notes = {}
sel_notes[pitch] = {Pitch = pitch, Idx = i}
sel_notes[i] = {Pitch = pitch, Idx = i}

sel_notes表使用table.save-1.0.lua

return {
-- Table: {1}
   {
      [64]={2},
      [65]={3},
      [66]={4},
      [67]={5},
      [52]={6},
      [69]={7},
      [68]={8},
      [55]={9},
      [56]={10},
      [57]={11},
      [58]={12},
      [59]={13},
      [60]={14},
      [61]={15},
      [62]={16},
      [63]={17},
   },
-- Table: {2}
   {
      ["Pitch"]=63,
      ["Idx"]=64,
   },
-- Table: {3}
   {
      ["Pitch"]=52,
      ["Idx"]=65,
   },
-- Table: {4}
   {
      ["Pitch"]=58,
      ["Idx"]=66,
   },
-- Table: {5}
   {
      ["Pitch"]=52,
      ["Idx"]=67,
   },
-- Table: {6}
   {
      ["Pitch"]=52,
      ["Idx"]=67,
   },
-- Table: {7}
   {
      ["Pitch"]=58,
      ["Idx"]=69,
   },
-- Table: {8}
   {
      ["Pitch"]=63,
      ["Idx"]=68,
   },
-- Table: {9}
   {
      ["Pitch"]=52,
      ["Idx"]=55,
   },
-- Table: {10}
   {
      ["Pitch"]=58,
      ["Idx"]=56,
   },
-- Table: {11}
   {
      ["Pitch"]=63,
      ["Idx"]=57,
   },
-- Table: {12}
   {
      ["Pitch"]=58,
      ["Idx"]=69,
   },
-- Table: {13}
   {
      ["Pitch"]=63,
      ["Idx"]=59,
   },
-- Table: {14}
   {
      ["Pitch"]=52,
      ["Idx"]=60,
   },
-- Table: {15}
   {
      ["Pitch"]=52,
      ["Idx"]=61,
   },
-- Table: {16}
   {
      ["Pitch"]=63,
      ["Idx"]=62,
   },
-- Table: {17}
   {
      ["Pitch"]=63,
      ["Idx"]=68,
   },
}

Midi Editor Notes

我需要对表进行排序,所以如果这样做的话

for 1 = 1, 15 do
  note = sel_notes[i].Pitch
  index = sel_notes[i].Idx
  print(note,index)
end

我会得到这个:

52 55
52 60
52 61
52 65
52 67
58 56
58 58
58 63
58 66
58 69
63 57
63 59
63 62
63 64
63 68

因此,我将能够更改音符的音高值,以使其与具有和弦音符的另一张桌子的音高值匹配。所以:螺距52至55音高58至59间距63到62

sorting lua midi
1个回答
1
投票

您可以使用table.sort方法。

第一个参数是一个表,第二个参数(可选)是一个函数,该函数返回其第一个参数是否小于第二个参数。

当然存在表格结构相当古怪的问题,因此您需要摆脱第一个元素,这是没有意义的。最简单的方法是使用table.sort

所以类似

table.remove
© www.soinside.com 2019 - 2024. All rights reserved.