HOT100与剑指Offer

本文分享了两道编程题目:使用动态规划解决HOT100中的279完全平方数问题,以及两种方法实现从尾到头打印链表。通过数学原理和栈操作,提升面试准备效率。
摘要由CSDN通过智能技术生成


前言

一个本硕双非的小菜鸡,备战24年秋招,计划刷完hot100和剑指Offer的刷题计划,加油!
根据要求,每一道题都要写出两种以上的解题技巧。

一、279. 完全平方数(HOT100)

279. 完全平方数
Note:动态规划

class Solution {
public:
    int numSquares(int n) {
        vector<int> dp(n + 1, INT_MAX);
        //1. 确定dp数组(dp table)以及下标的含义
        //dp[j]:和为j的完全平方数的最少数量为dp[j]
        
        //2. 确定递推公式
        //dp[j] = min(dp[j], dp[j - i * i] + 1)

        //3. dp数组如何初始化
        dp[0] = 0;

        //4. 确定遍历顺序
        for (int i = 1; i * i <= n; i++) {
            for (int j = i * i; j <= n; j++) {
                dp[j] = min(dp[j], dp[j - i * i] + 1);
            }
        }

        //5. 举例推导dp数组
        return dp[n];
    }
};

Note:数学方法(涨知识了)
拉格朗日四平方和定理:一个数字可以写成四个数的平方和
勒让德三平方和定理:n!=4^a*(8b+7),那么必然可以写成三数之和。是一个当且仅当的关系。
所以先排掉返回是4的,然后再排掉1和2,最后剩下的就是3

class Solution {
public:
    int numSquares(int n) {
        while (n % 4 == 0)
            n /= 4;
        if (n % 8 == 7)
            return 4;
        for (int a = 0; a * a <= n; ++a) {
            int b = sqrt(n - a * a);
            if (a * a + b * b == n) {
                return !!a + !!b;
            }
        }
        return 3;
    }
};

二、6. 从尾到头打印链表(剑指Offer)

从尾到头打印链表

Note:使用栈作为辅助

class Solution {
public:
    vector<int> printListReversingly(ListNode* head) {
        
        stack<int> stk;

        
        ListNode* pNode = head;
        
        while (pNode != nullptr) {
            stk.push(pNode->val);
            pNode = pNode->next;
        }
        
        int sizes = stk.size();
        vector<int> res(sizes);
        
        for (int i = 0; i < sizes; i++) {
            res[i] = stk.top();
            stk.pop();
        }
        return res;
    }
};

Note:翻转数组

class Solution {
public:
    vector<int> printListReversingly(ListNode* head) {
        vector<int> res;
        
        while (head != nullptr) {
            res.push_back(head->val);
            head = head->next;
        }
        
        reverse(res.begin(), res.end());
        
        return res;
    }
};

总结

祝大家都能学有所成,找到一份好工作!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

努力找工作的小菜鸡

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值