1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
23.11.21.txt 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
https://leetcode.cn/problems/swap-nodes-in-pairs/submissions/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
if(head==nullptr || head->next==nullptr)
{
return head;
}
ListNode* newHead = head->next;
head->next=swapPairs(newHead->next);
newHead->next = head;
return newHead;
}
};
https://leetcode.cn/problems/powx-n/submissions/
// 快速幂
class Solution {
public:
double myPow(double x, int n) {
if(n==0)
{
return 1.0;
}
else if(n>0)
{
double tmp = myPow(x, n/2);
return n%2==0 ? tmp*tmp:x*tmp*tmp;
}
else
{
double tmp = myPow(x, n/2);
return n%2==0 ? tmp*tmp:(1/x)*tmp*tmp;
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助