Re: [go-nuts] Heap of structs

2018-11-01 Thread Space A.
https://tour.golang.org/ пятница, 2 ноября 2018 г., 1:10:25 UTC+3 пользователь Alex Dvoretskiy написал: > > I managed to implement it. It turned out to be easier... I was thinking > about using pointers to struct instead of variables.. > > On Thursday, November 1, 2018 at 12:49:55 PM UTC-7, Nath

Re: [go-nuts] Heap of structs

2018-11-01 Thread Alex Dvoretskiy
I managed to implement it. It turned out to be easier... I was thinking about using pointers to struct instead of variables.. On Thursday, November 1, 2018 at 12:49:55 PM UTC-7, Nathan Fisher wrote: > > Is there a specific issue you’re experiencing in trying to implement it? > > Suggestions/obser

Re: [go-nuts] Heap of structs

2018-11-01 Thread Bruno Albuquerque
You just need to implement the required methods (Len, Less, Swap) for your type (str is a terrible name, BTW. First time I saw it I though of string, not struct). On Thu, Nov 1, 2018 at 11:57 AM Alex Dvoretskiy wrote: > How can I rewrite this code to use a heap of structs instead of a heap of >

Re: [go-nuts] Heap of structs

2018-11-01 Thread Nathan Fisher
Is there a specific issue you’re experiencing in trying to implement it? Suggestions/observations: - export the struct (Str instead of str) if you’re exporting the Heap. - same for the fields in the struct unless you have a constructor function (eg New) and appropriate functions to modify/view th

[go-nuts] Heap of structs

2018-11-01 Thread Alex Dvoretskiy
How can I rewrite this code to use a heap of structs instead of a heap of ints? Have: type IntHeap []int Need: type str struct { num int, val string } type Heap []str https://play.golang.org/p/KHhIvKMkNMy -- You received this message because you are subscribed to the Google Groups