golang工程師面試第四天

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。**1**.商場裡有n類產品,從高到低按價格排序,若價格相同則按生產日期排序,價格保留小數點後兩位```gopackage mainimport ("fmt")type Shop struct {Price float32Date string}func main() {shops := []Shop{{1, "222"}, {7, "222"}, {3, "222"},{4, "222"}, {5, "2018/1/21"}, {5, "2018/1/20"},{5, "2018/1/16"},{5, "2018/1/19"}} num :=len(shops)//先按價格用冒泡排序將商品從低到高排列好,若價格相同則判斷日期,按由早到晚排序for i:=0;i<num;i++ {for j:=i+1;j<num;j++ {ifshops[i].Price >shops[j].Price{ shops[i],shops[j] =shops[j],shops[i]}else if shops[i].Price ==shops[j].Price{if shops[i].Date >shops[j].Date {shops[i],shops[j] =shops[j],shops[i]}}}}fmt.Println(shops)}```**2**.將字串左右鏡面反轉```gopackage mainimport ("fmt")func main() {str := "abcdef"runes := []rune(str)l := len(runes)for i, j := 0, l; i < j; i, j = i+1, j-1 {runes[i], runes[l-1-i] = runes[l-1-i], runes[i]fmt.Println(string(runes))}}```**3**.說說對beego架構的理解,路由是怎樣走的,beego設計思想是怎樣的,**4**.簡述beego的思想,熟知bee的功能**5**.簡述go中的channel 、goroutine和interface,要求熟悉底層源碼**6**瞭解一些微服務641 次點擊  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.