本文主要是介绍Leetcode—1329. 将矩阵按对角线排序【中等】(unordered_map、priority_queue),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
2024每日刷题(121)
Leetcode—1329. 将矩阵按对角线排序
实现代码
class Solution {
public:vector<vector<int>> diagonalSort(vector<vector<int>>& mat) {const int m = mat.size();const int n = mat[0].size();unordered_map<int, priority_queue<int>> counts;for(int i = 0; i < m; i++) {for(int j = 0; j < n; j++) {counts[i - j].push(mat[i][j]);}}for(int i = m - 1; i >= 0; i--) {for(int j = n - 1; j >= 0; j--) {mat[i][j] = counts[i - j].top(), counts[i - j].pop();}}return mat;}
};
运行结果
unordered_map
priority_queue
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!
这篇关于Leetcode—1329. 将矩阵按对角线排序【中等】(unordered_map、priority_queue)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!