首页 > TAG信息列表 > cursize

QT 计算工程路径下文件夹及其子文件大小

一、目的:获取某个路径下目录及其子目录文件大小 二、头文件: #include <QString> #include <QDir> 三、实现方法:qint64 ReadDirSize::du(const QString &path)函数 qint64 du(const QString &path) { QDir dir(path); qint64 size=0; foreach (QFileInfo fileInfo,dir.entryI

1588. Sum of All Odd Length Subarrays

Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the maximum average value. Example 1: Input: [1,12,-5,-6,50,3], k = 4 Output: 12.75 Explanation: Maximum ave

排序算法——堆排序(C++)

堆排序分为大根堆和小根堆。 堆排思想:(采用树的概念来组织数据结构,在这里我是根据小根堆对数据进行排序) ①首先我们Insertheap一组数据,在插入的过程中采用向上调整(Shiftup),每次将插入的最小值放在堆顶(heap[0]). ②然后我们Removeheap创建好的堆,将heap[0]节点剔除作为返回值,每次都将

顺序容器——vector

#include <iostream> #include <vector> #include <iterator> //迭代器头文件 #include <algorithm> //泛型算法头文件 using namespace std; int main() { //使用库中的 vector int arr[] = {1,24,62,63,3,34,85,32}; int len = sizeof(arr) / sizeof(arr[0]);