비교 가능한 인터페이스를 무엇이라고 하나요?
링크된 목록에 해당 요소의 비교 가능성을 확인하는 인터페이스를 추가하려면, sort.Interface 인터페이스를 구현할 수 있습니다. 이 사전 정의된 인터페이스는 세 가지 방법을 제공합니다.
<code class="go">type Interface interface { // Len is the number of elements in the collection. Len() int // Less reports whether the element with index i // must sort before the element with index j. Less(i, j int) bool // Swap swaps the elements with indexes i and j. Swap(i, j int) }</code>
연결된 목록에 대해 이 인터페이스를 구현하면 요소를 올바르게 비교하고 정렬할 수 있습니다.
위 내용은 내 연결 목록에서 정렬을 어떻게 구현할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!