摘要: 977.有序数组的平方 题目链接:https://leetcode.cn/problems/squares-of-a-sorted-array/ 文章讲解:https://programmercarl.com/0977.%E6%9C%89%E5%BA%8F%E6%95%B0%E7%BB%84%E7% 阅读全文
posted @ 2023-07-27 23:12 银河小船儿 阅读(1405) 评论(0) 推荐(0)
摘要: 从b站上黑马程序员的c++课里学到的C++之指针变量的定义和使用 指针变量的定义和使用 简单理解指针就是地址。 内存编号是从0开始记录的,一般用16进制数字表示 1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int 阅读全文
posted @ 2023-07-27 10:48 银河小船儿 阅读(105) 评论(0) 推荐(0)