您的位置:首页 > 游戏 > 游戏 > 字体大全_上海互联网公司有哪些_班级优化大师官方网站_搭建自己的网站

字体大全_上海互联网公司有哪些_班级优化大师官方网站_搭建自己的网站

2025/3/4 17:35:50 来源:https://blog.csdn.net/qq_74420726/article/details/145907525  浏览:    关键词:字体大全_上海互联网公司有哪些_班级优化大师官方网站_搭建自己的网站
字体大全_上海互联网公司有哪些_班级优化大师官方网站_搭建自己的网站

合并区间

class Solution {
public:static bool cmp(const vector<int> & a,const vector<int> & b){return a[0]<b[0];}vector<vector<int>> merge(vector<vector<int>>& intervals) {sort(intervals.begin(),intervals.end(),cmp);vector<int> tmp=intervals[0];vector<vector<int>> res;int n=intervals.size();for(int i=1;i<n;i++){if(tmp[1]>=intervals[i][0]){tmp[1]=tmp[1]>intervals[i][1]?tmp[1]:intervals[i][1];}else{res.push_back(tmp);tmp=intervals[i];}}res.push_back(tmp);return res;}
};

和分割字符串那个一样

单调递增的数字

class Solution {
public:int monotoneIncreasingDigits(int k) {string s=to_string(k);int index=-1;int n=s.size();for(int i=0;i<n-1;i++){if(s[i]>s[i+1]){s[i]--;index=i+1;while(index>1&&s[index-1]<s[index-2]){index--;s[index-1]--;}break;}}for(int i=index;i>=0&&i<n;i++){s[i]='9';}int res=stoi(s);return res;}
};

监控二叉树

class Solution {
public:int minCameraCover(TreeNode* root) {unordered_map<TreeNode* ,int> mymap;stack<TreeNode*> sta;sta.push(root);TreeNode* cur=root;int count=0;while(!sta.empty()){cur=sta.top();sta.pop();if(cur){sta.push(cur);sta.push(nullptr);if(cur->left){sta.push(cur->left);}if(cur->right){sta.push(cur->right);}}else{cur=sta.top();sta.pop();bool put=0;if(cur->right){if(mymap[cur->right]==0){put=1;}else if(mymap[cur->right]==2){mymap[cur]=1;}}if(cur->left){if(mymap[cur->left]==0){put=1;}else if(mymap[cur->left]==2){mymap[cur]=1;}}if(put){mymap[cur]=2;count++;mymap[cur->left]=mymap[cur->right]=1;}else if(cur==root&&!mymap[cur]){mymap[cur]=2;count++;}}}    return count;}
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com