积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(6)C++(6)综合其他(1)笔试面试(1)

语言

全部英语(7)

格式

全部PDF文档 PDF(7)
 
本次搜索耗时 0.017 秒,为您找到相关结果约 7 个.
  • 全部
  • 后端开发
  • C++
  • 综合其他
  • 笔试面试
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 So You Think You Can Hash

    my_type); return static_cast(hasher); } OK, but how do I stick this into a std::unordered_set/map ?2024 Victor Ciura | @ciura_victor - Unleashing 🦀 The Ferris Within 47 GenericHash hasher; hash_append(hasher, t); return static_cast(hasher); } }; std::unordered_set> my_set;2024 Victor Ciura | @ciura_victor - Unleashing 🦀 The etc. std::unordered_set> my_set; std::unordered_set> my_set; std::unordered_set> my_set; std::unordered_set>
    0 码力 | 119 页 | 6.54 MB | 6 月前
    3
  • pdf文档 Back to Basics Concepts

    coll, const T& val) { coll.push_back(val); } std::vector coll1; std::set coll2;std::unordered_set uset; add(coll1, 42); // OK add(coll2, 42); // ERROR: no push_back() C++98 Nico T> void add(CollT& coll, const T& val) { coll.push_back(val); } std::vector coll; std::unordered_set add(coll, 42); // OK add(u 42); // uses 2nd add() calling insert() C++98 Nico Josuttis void add(auto& coll, const auto& val) { coll.push_back(val); } std::vector coll; std::unordered_set u; add(coll, 42); // OK add(us, 42); // uses 2nd add() calling insert() "Abbreviated
    0 码力 | 23 页 | 2.14 MB | 6 月前
    3
  • pdf文档 Back to Basics: Classic 9STL

    set • multimap • multiset 21 • Unordered associative containers • unordered_map (C++11) • unordered_set (C++11) • unordered_multimap (C++11) • unordered_multiset (C++11) • Container adaptors • queue where an element's position is irrelevant • Implemented using hash tables • unordered_map, unordered_set, unordered_multimap, unordered_multiset 47CppCon 2021 – Back to Basics: Classic STL Copyright class Hash = hash, class Pred = equal_to, class Allocator = allocator> class unordered_set; • Features • Supports amortized constant time element lookup • Elements of type Key are stored
    0 码力 | 75 页 | 603.36 KB | 6 月前
    3
  • pdf文档 Google C++ Style Guide

    foo::bar::Bar*; // A set of measurements. Just an alias for user convenience. using TimeSeries = std::unordered_set, DataPointComparator>; } // namespace a These aliases don’t document DataPoint = foo::bar::Bar*; using std::unordered_set; // Bad: just for local convenience using std::hash; // Bad: just for local convenience typedef unordered_set, DataPointComparator> classes, explicitly marked internal namespaces, and in .cc files: // In a .cc file using std::unordered_set; Naming The most important consistency rules are those that govern naming. The style of a name
    0 码力 | 83 页 | 238.71 KB | 1 年前
    3
  • pdf文档 Back to Basics: Lambdas

    criterion / hash function type (since C++20) ##include Joratexit () ##include <unordered_set> int main() { ata: :atexit(T OUT Jambda to be called on regular 站 auto hashFunc = [] (const autog obj) { /lambdato be used as hashfunction return 有 std: :unordered_set coll GE
    0 码力 | 17 页 | 935.72 KB | 6 月前
    3
  • pdf文档 Design Patterns: Facts and Misconceptions

    class KeyEqual = std::equal_to, class Allocator = std::allocator > class unordered_set; template< class T, class Deleter = std::default_delete > class unique_ptr;2. The
    0 码力 | 88 页 | 17.31 MB | 6 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    C++11 introduces two unordered containers: std::unordered_map/std::unordered_multimap and std::unordered_set/std::unordered_multiset. Their usage is basically similar to the original std::map/std::mult
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
共 7 条
  • 1
前往
页
相关搜索词
SoYouThinkCanHashBacktoBasicsConceptsClassic9STLGoogleC++StyleGuideLambdasDesignPatternsFactsandMisconceptionsModernTutorial11141720OntheFly
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩