슬라이스 필드로 정렬
Go에서는 추가로 중첩된 슬라이스 필드가 포함된 구조체 슬라이스를 정렬해야 하는 시나리오에 직면할 수 있습니다. 아래 예를 고려하십시오.
<code class="go">type Parent struct { id string children []Child } type Child struct { id string }</code>
다음 값을 가진 상위 구조체 조각이 있다고 가정합니다.
<code class="go">parents := make([]Parent, 0) p1 := Parent { "3", []Child { {"2"}, {"3"}, {"1"}, }, } p2 := Parent { "1", []Child { {"8"}, {"9"}, {"7"}, }, } p3 := Parent { "2", []Child { {"5"}, {"6"}, {"4"}, }, } parents = append(parents, p1, p2, p3)</code>
목표는 두 가지 기준에 따라 상위 조각을 정렬하는 것입니다.
해결책:
원하는 정렬을 달성하려면 sort.Slice 함수를 사용하여 상위 슬라이스와 중첩된 하위 슬라이스를 정렬할 수 있습니다. 코드는 다음과 같습니다.
<code class="go">// sort each Parent in the parents slice by Id sort.Slice(parents, func(i, j int) bool {return parents[i].id < parents[j].id}) // for each Parent, sort each Child in the children slice by Id for _, parent := range parents { sort.Slice(parent.children, func(i, j int) bool {return parent.children[i].id < parent.children[j].id}) }</code>
이 코드는 상위 슬라이스를 먼저 정렬하여 상위가 ID 필드를 기준으로 오름차순으로 정렬되도록 합니다. 그 후, 각 상위에 대해 동일한 방식으로 하위 슬라이스를 정렬합니다.
예상 결과:
<code class="go">[{1 [{7} {8} {9}]} {2 [{4} {5} {6}]} {3 [{1} {2} {3}]}]</code>
위 내용은 Go에서 중첩된 슬라이스 필드를 사용하여 구조체 슬라이스를 정렬하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!