Loading

摘要: 一、前言 我们知道普通变量作为参数传入函数是无法修改变量的值,如下示例就是典型的 void swap(int x, int y) { int temp = x; x = y; y = temp; } 解决方案:传入变量的指针(即地址),指针间接访问修改变量的值 void swap(int *x, i 阅读全文
posted @ 2023-01-06 15:14 eiSouthBoy 阅读(50) 评论(0) 推荐(0)
摘要: 一、简介 学生管理系统(Student-Management-System)项目链接:https://github.com/caojun97/Student-Management-System 目前正在学习算法与数据结构,学习线性表-单链表这一章节时,对于教材的知识点产生不解。教程上只有单一理论介绍 阅读全文
posted @ 2023-01-06 10:34 eiSouthBoy 阅读(89) 评论(0) 推荐(0)