• 2024-01-13类模板实现简单的数组
    //Myarray.hpp#pragmaoncetemplate<classT>classMyArray{public: MyArray(intcapacity){ this->mCapacity=capacity; this->msize=0; this->p=newT[this->mCapacity]; } //copy MyArray(constMyArray&arr){ this->
  • 2023-06-20PAT_Advanced Level_1078 Hashing (25分)(C++_Hush_平方探测法)
    Thetaskofthisproblemissimple:insertasequenceofdistinctpositiveintegersintoahashtable,andoutputthepositionsoftheinputnumbers.ThehashfunctionisdefinedtobeH(key)=key%TSizewhereTSizeisthemaximumsizeofthehashtable.Qu
  • 2023-05-25P1794 求解好多鱼问题
    #include<iostream>#include<vector>#include<algorithm>usingnamespacestd;vector<int>vd;vector<int>vn;intn;intminsize;intmaxsize;intmain(){intd=0;intmsize=0;intmxsize=0;cin>>minsize>
  • 2023-03-17Android轻量级数据SparseArray详解
    SparseArray是Android中特有的数据结构,他的几个重要的特点;以键值对形式进行存储,基于二分查找,因此查找的时间复杂度为0(LogN);.由于SparseArray中Key存储的是数组形式,
  • 2023-03-11android camera拍照/录像后查看图片/视频并删除所有内容后自动回到camera预览界面
    在JB2版本上,在camera中拍照/录像,后点击右下角缩略图/向左滑动来查看图片/视频,当点击“删除”menu来删除所有的image/video后,camerapreview只显示在屏幕左边约四分之一的地
  • 2022-10-1539.字符串类
    字符串类.cpp#pragmawarning(disable:4996)#define_CRT_SECURE_NO_WARNINGS1//2022年10月14日21:22:09#include<iostream>usingnamespacestd;#include"MyStrin
  • 2022-10-1335.数组下标重载
    程序1:11数组下标重载.cpp#pragmawarning(disable:4996)#include<iostream>usingnamespacestd;#include"MyArray.h"voidtest(){MyArrayarr;for(i
  • 2022-09-26Hashing (25)
    题目描述Thetaskofthisproblemissimple:insertasequenceofdistinctpositiveintegersintoahashtable,andoutputthepositionsoftheinputnumbers.