编写一个程序,将输入字符串中的字符按如下规则排序。 规则1:英文字母从A到Z排列,不区分大小写。 如,输入:Type输出:epTy 规则2:同一...
收录了4篇文章 · 1人关注
编写一个程序,将输入字符串中的字符按如下规则排序。 规则1:英文字母从A到Z排列,不区分大小写。 如,输入:Type输出:epTy 规则2:同一...
可以用到这几个函数 sort(vec.begin(), vec.end()); auto end_unique = unique(vec.beg...
#include#include#include //进制转换 int hex2int(char *str, int *result){ *...
class Solution {public: vector> threeSum(vector& nums) { vecto...
专题公告
LeetCode