<p><img src="https://img.php.cn/upload/article/000/000/164/170740497113136.jpg" alt="在 GoLang 中对自定义结构体数组进行排序"></p>
<p>在GoLang中,對自訂結構體陣列進行排序是常見的需求。透過對數組中的元素進行比較和交換,我們可以按照特定的規則對結構體數組進行排序。在排序過程中,我們可以使用不同的排序演算法,例如冒泡排序、插入排序或快速排序等。無論使用哪種演算法,我們都可以根據結構體的某個欄位進行比較,從而實現排序操作。在本文中,我們將介紹如何在GoLang中對自訂結構體陣列進行排序,以及一些常見的排序技巧和注意事項。 </p>
<h2 class="daan">問題內容</h2>
<p>如何使用 golang 對自訂結構陣列進行排序。 </p>
<p>我的程式碼是:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">package main
import "fmt"
type ticketdistribution struct {
label string
ticketvolume int64
}
type ticketdistributionresponse struct {
leveldistribution []*ticketdistribution
}
func main() {
var response ticketdistributionresponse
response.leveldistribution = append(response.leveldistribution, &ticketdistribution{label: "john", ticketvolume: 3})
response.leveldistribution = append(response.leveldistribution, &ticketdistribution{label: "bill", ticketvolume: 7})
response.leveldistribution = append(response.leveldistribution, &ticketdistribution{label: "sam", ticketvolume: 4})
for _, val := range response.leveldistribution {
fmt.println(*val)
}
}</pre><div class="contentsignin">登入後複製</div></div>
<p>這將輸出列印為</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">{john 3}
{bill 7}
{sam 4}</pre><div class="contentsignin">登入後複製</div></div>
<p>我想按 <strong>ticketvolume</strong> 值降序對<strong>回應</strong>物件進行排序。 </p>
<p>排序後,回應物件應如下所示:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">{Bill 7}
{Sam 4}
{John 3}</pre><div class="contentsignin">登入後複製</div></div></p><h2 class="daan">解決方法</h2><p>您可以使用 <a href="https://www.php.cn/link/ad0efad9dd0abaec4b8f9aaa489ec2f1" rel="nofollow noreferrer"><code>sort.slice</code></a> 來實現此目的。它需要你的切片和排序函數。
排序函數本身採用兩個索引,如果左側項目<strong>小於</strong>右側項目,則傳回 true。 </p>
<p>這樣您就可以按照自己的自訂標準進行排序。 </p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">package main
import (
"fmt"
"sort"
)
type TicketDistribution struct {
Label string
TicketVolume int64
}
type TicketDistributionResponse struct {
LevelDistribution []*TicketDistribution
}
func main() {
var response TicketDistributionResponse
response.LevelDistribution = append(response.LevelDistribution, &TicketDistribution{Label: "John", TicketVolume: 3})
response.LevelDistribution = append(response.LevelDistribution, &TicketDistribution{Label: "Bill", TicketVolume: 7})
response.LevelDistribution = append(response.LevelDistribution, &TicketDistribution{Label: "Sam", TicketVolume: 4})
sort.Slice(response.LevelDistribution, func(i, j int) bool {
a := response.LevelDistribution[i]
b := response.LevelDistribution[j]
return a.TicketVolume > b.TicketVolume
})
for _, val := range response.LevelDistribution {
fmt.Println(*val)
}
}</pre><div class="contentsignin">登入後複製</div></div>
<p>在比較函數中使用 <code>></code> 對切片進行降序排序,對於升序,您可以使用 <code><</code>。 </p>
以上是在 GoLang 中對自訂結構體數組進行排序的詳細內容。更多資訊請關注PHP中文網其他相關文章!