- 博客(2)
- 收藏
- 关注
原创 2020-9-24学习笔记
9月24日作业 代码实践: 题目: 求 1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/qiu-12n-lcof/ 解答1: #include <iostream> using namespace std; int sumNums1(int); int main() { int n; cin >
2020-09-25 00:35:35 72
原创 2020-9-23练习
2020年9月23日学习笔记 代码实践: “局部反转+整体反转”完成原地反转实践题两道: 题目1: 字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。请定义一个函数实现字符串左旋转操作的功能。比如,输入字符串"abcdefg"和数字2,该函数将返回左旋转两位得到的结果"cdefgab"。 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/zuo-xuan-zhuan-zi-fu-chuan-lcof 解答1: #include <io
2020-09-23 23:24:56 94
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人