【LeetCode016-017算法/编程练习C++】3Sum Closest,九宫格输入法//Sort函数

16. 3Sum Closest

  • Total Accepted: 107572
  • Total Submissions: 352697
  • Difficulty: Medium
  • Contributors: Admin

Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution.

    For example, given array S = {-1 2 1 -4}, and target = 1.

    The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

这道题要算出和target最接近的三个数之和

---------------------------自己写的很愚笨的两种方法,勉强通过测试------------------------------------------

//直接无脑循环通不过,加上一句==target就通过了……

class Solution {
public:
	int threeSumClosest(vector<int>& nums, int target) {
		int result = nums[0] + nums[1] + nums[2];
		//    if(nums.size()<1000){
		for (int i = 0; i<nums.size() - 2; i++) {
			for (int ii = i + 1; ii<nums.size() - 1; ii++) {
				for (int iii = ii + 1; iii<nums.size(); iii++) {
					if (nums[i] + nums[ii] + nums[iii] == target)return target;
					if (abs(nums[i] + nums[ii] + nums[iii] - target)<abs(result - target))
						result = nums[i] + nums[ii] + nums[iii];
				}
			}
		}
		return result;
	}
};

//自己写的利用sort函数排序的第二种方法

sort排序之后就知道怎么移动了,例如选定第一个,begin为第二个,end为最后一个,如果和大于target就把end往左移这样,直到和和target一样或者移动结束。

class Solution {
public:
    int threeSumClosest(vector<int>& nums, int target) {
        
        int result=nums[0]+nums[1]+nums[2];
        sort(nums.begin(),nums.end());//sort排序
        
        for(int i=0;i<nums.size()-2;i++){
            int begin=i+1;
            int end=nums.size()-1;
        
            int sum=nums[i]+nums[begin]+nums[end];
            if(sum==target)return target;
            
            while(sum!=target&&end-1>=begin){
                 sum=nums[i]+nums[begin]+nums[end];
                result= abs(sum-target)<abs(result-target)?sum:result;
               if(sum>target){
                end--;
               }
               if(sum==target)return target;
                if(sum<target){
                begin++;
               }
        }
    
        }
        
        return result;
    }
};
结果如图:

 

17. Letter Combinations of a Phone Number

  • Total Accepted: 119023
  • Total Submissions: 368508
  • Difficulty: Medium
  • Contributors: Admin

Given a digit string, return all possible letter combinations that the number could represent.

A mapping of digit to letters (just like on the telephone buttons) is given below.

Input:Digit string "23"
Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

Note:
Although the above answer is in lexicographical order, your answer could be in any order you want.

//天真的我以为*和#也要,浪费了不少时间

-------------------------------------我的解决方案,还做的挺久的其实---------------------------

class Solution {
public:
	vector<string> letterCombinations(string digits) {
	vector<string>result;
	if (digits.size() == 0)return result;
	unordered_map<char, int>mapping;
	unordered_map<char, int>mapping2;
	for (int i = 0; i < 10; i++)mapping[i+'0'] = 3;
	for (int i = 0; i < 10; i++)mapping2[i + '0'] = i;
	mapping2['*'] = 10;
	mapping2['#'] = 11;
	mapping['0'] = 1;
	mapping['7'] = 4;
	mapping['9'] = 4;
	mapping['*'] = 1;
	mapping['#'] = 1;
	mapping['1'] = 1;
	char a[12][4] = { { ' ' },{},
	{ 'a','b','c' },{ 'a' + 3,'b' + 3,'c' + 3 },
	{ 'g','h','i' },{ 'j','k','l' },
	{ 'm','n','o' },{ 'p','q','r' ,'s' },
	{ 't','u','v' },{ 'w','x','y','z' },
	{ '+' },{} };
	//初始化
	int size = 1;
	for (int i = 0; i < digits.size(); i++) {
		size *= mapping[digits[i]];
	}
	string useless = "";
	for (int i = 0; i < size; i++)result.push_back(useless);
	int round ;
	round = size;
	for (int i = 0; i < digits.size(); i++) {

		for (int ii = 0; round!=0&&ii < size / round; ii++) {

			for (int j = 0; j < round; j++) {
				result[j + ii*round] += a[mapping2[digits[i]]][j*mapping[digits[i]] / round];
			}
			
		}
		round /= mapping[digits[i]];
	}
		return result;

	}
};
运行结果:



Top Solution://好简洁好简洁,没有真的去运行,看下思路以及表达吧,利用string来存储真的漂亮了太多

vector<string> letterCombinations(string digits) {
    vector<string> res;
    string charmap[10] = {"0", "1", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
    res.push_back("");
    for (int i = 0; i < digits.size(); i++)
    {
        vector<string> tempres;
        string chars = charmap[digits[i] - '0'];
        for (int c = 0; c < chars.size();c++)
            for (int j = 0; j < res.size();j++)
                tempres.push_back(res[j]+chars[c]);
        res = tempres;
    }
    return res;
}

还有一个:

vector<string> letterCombinations(string digits) {
    vector<string> result;
    if(digits.empty()) return vector<string>();
    static const vector<string> v = {"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
    result.push_back("");   // add a seed for the initial case
    for(int i = 0 ; i < digits.size(); ++i) {
        int num = digits[i]-'0';
        if(num < 0 || num > 9) break;
        const string& candidate = v[num];
        if(candidate.empty()) continue;
        vector<string> tmp;
        for(int j = 0 ; j < candidate.size() ; ++j) {
            for(int k = 0 ; k < result.size() ; ++k) {
                tmp.push_back(result[k] + candidate[j]);
            }
        }
        result.swap(tmp);
    }
    return result;
}

已经十二点了竟然,先去吃个饭,祝刷题愉快





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

朱铭德

五毛也是爱٩(●´৺`●)૭

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

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

打赏作者

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

抵扣说明:

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

余额充值