指针 关于指针:指针作为函数形参使最大最小数对调 输出10个整数,将其中最小的数与第一个数对换,把最大的数与最初一个数对换。写3个函数:①输出10个数;②进行解决;③输入10个数。所有函数的参数均用指针。
无分类 Warning-cast-to-pointer-from-integer-of-different-size 报错:[Warning] cast to pointer from integer of different size [-Wint-to-pointer-cast]中译:[警告]把指针不同大小的整数(-Wint-to-pointer-cast)
无分类 【Go】string 也是引用类型 初学 Go 语言的朋友总会在传 []byte 和 string 之间有着很多纠结,实际上是没有了解 string 与 slice 的本质,而且读了一些程序源码,也发现很多与之相关的问题,下面类似的代码估计很多初学者都写过,也充分说明…
无分类 Go:指针能优化性能吗?【译】 趁着元旦休假+春节,尝试把2018年期间让我受益的一些文章、问答,翻译一下。欢迎指正、讨论,希望对你也有所帮助。原文链接:Go: Are pointers a performance optimization?
无分类 leetcode讲解–876. Middle of the Linked List Given a non-empty, singly linked list with head node head, return a middle node of linked list.
无分类 leetcode讲解–922. Sort Array By Parity II Given an array A of non-negative integers, half of the integers in A are odd, and half of the integers are even.