网站首页 站内搜索

搜索结果

查询Tags标签: pos2,共有 7条记录
  • [Oracle] LeetCode 415 Add Strings

    Given two non-negative integers, num1 and num2 represented as string, return the sum of num1 and num2 as a string. You must solve the problem without using any built-in library for handling large integers (such as BigInteger). You must also not conver…

    2022/8/27 2:24:21 人评论 次浏览
  • 分形之城

    Q A #include<iostream> #include<complex> #include<iomanip> using namespace std; using LL = long long ; using PLL = pair<LL,LL>; PLL calc(LL n,LL m){if(0==n){return {0,0};}LL len=1ll<<(n-1);LL cnt=1ll<<(2*n-2);PLL p…

    2022/3/11 23:17:27 人评论 次浏览
  • C++分割字符串方法

    C++标准目前没有提供分割字符串的方法,但可以自己实现之。 测试代码如下: #include <vector> #include <string> #include <iostream>std::vector<std::string> Split(const std::string& str, const char* delim) {std::vector<std::st…

    2021/11/27 20:40:18 人评论 次浏览
  • C++分割字符串方法

    C++标准目前没有提供分割字符串的方法,但可以自己实现之。 测试代码如下: #include <vector> #include <string> #include <iostream>std::vector<std::string> Split(const std::string& str, const char* delim) {std::vector<std::st…

    2021/11/27 20:40:18 人评论 次浏览
  • LeetCode 1.两数之和

    LeetCode 1.两数之和 一、题目详情 原题链接:https://leetcode-cn.com/problems/two-sum/ 给定一个整数数组nums 和一个整数目标值 target,请你在该数组中找出和为目标值的那 两个整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个…

    2021/5/7 19:00:30 人评论 次浏览
  • 力扣-349题(Java)-双指针

    题目链接:https://leetcode-cn.com/problems/intersection-of-two-arrays/ 题目如下: class Solution {public int[] intersection(int[] nums1, int[] nums2) {int len1=nums1.length,len2=nums2.length;//排序确保都是升序Arrays.sort(nums1);Arrays.sort(nums2);int…

    2021/5/1 22:25:47 人评论 次浏览
  • 力扣-977题(Java)-双指针

    题目链接:https://leetcode-cn.com/problems/squares-of-a-sorted-array/ 题目如下: class Solution {public int[] sortedSquares(int[] nums) {//题目中数组已是升序排序//找出数组中负数和非负数的分界线//如果全是非负数,则平方后升序;如果全是负数,则平方后为倒…

    2021/5/1 12:56:49 人评论 次浏览
扫一扫关注最新编程教程