积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(14)Julia(10)综合其他(7)人工智能(7)系统运维(4)网络与安全(4)Python(2)Tornado(2)Go(1)Rust(1)

语言

全部中文(繁体)(10)英语(7)zh(4)中文(简体)(3)ro(1)

格式

全部PDF文档 PDF(20)DOC文档 DOC(4)其他文档 其他(1)
 
本次搜索耗时 0.312 秒,为您找到相关结果约 25 个.
  • 全部
  • 后端开发
  • Julia
  • 综合其他
  • 人工智能
  • 系统运维
  • 网络与安全
  • Python
  • Tornado
  • Go
  • Rust
  • 全部
  • 中文(繁体)
  • 英语
  • zh
  • 中文(简体)
  • ro
  • 全部
  • PDF文档 PDF
  • DOC文档 DOC
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Rust 程序设计语言 简体中文版 1.85.0

    现在让我们转向一些不太复杂的集合:哈希 map! 164/562Rust 程序设计语言 简体中文版 使用 Hash Map 储存键值对 最后介绍的常用集合类型是哈希 map(hash map)。HashMap<K, V> 类型储存了一个键类型 K 对应一个值类型 V 的映射。它通过一个哈希函数(hashing function)来实现映射,决定如何 将键和值放入内存中。很多编程语言支持这种数据结构,不过通常有不同的名字:哈希、 map 中,其中键是队伍的名字而 值是每个队伍的分数。给出一个队名,就能检索到该队的得分。 本章我们会介绍哈希 map 的基本 API,不过还有更多吸引人的功能隐藏于标准库在 HashMap<K, V> 上定义的函数中。一如既往请查看标准库文档来了解更多信息。 新建一个哈希 map 可以使用 new 创建一个空的 HashMap,并使用 insert 增加元素。在示例 8-20 中我们记录两支 String 这样具体类型的泛型参数,就像一个获取未知类型值 的函数可以对多种具体类型的值运行同一段代码一样。事实上我们已经使用过第六章的 Option,第八章的 Vec 和 HashMap<K, V>,以及第九章的 Result 这些泛型了。本 章会探索如何使用泛型定义我们自己的类型、函数和方法! 首先,我们将回顾一下提取函数以减少代码重复的机制。接下来,我们将使用相同的技术,从
    0 码力 | 562 页 | 3.23 MB | 26 天前
    3
  • pdf文档 【周鸿祎清华演讲】DeepSeek给我们带来的创业机会-360周鸿祎-202502

    皮带托辊异常检测 • 分析监测烧结工序物料 成分 • 烧结皮带智能监测 • 烧结设备运行工况检测 • 料场生产计划智能配置 • 烧结矿成分预测 • 烧结矿质量预测 • 烧结烟气 S02 排放在 线预测与控制 • 构建能源消耗预测 • 智能故障诊断 • 挡板位移检测 • 皮带划痕、 撕裂、 跑偏检测预警 • 1球团皮带智能监测 • 生球粒度分布在线 识别 • 球团1颗粒粒度检测 • 球团1现场生产安全 • 热卷带头方向识别 • 钢卷带头监测与联动控制 • 钢卷托举位置对中检测 • 宽厚板双边剪自动对中 • 钢卷喷号自动识别 • 棒材自动数支数 • 自动控制转钢辊道的转向 和转速 • 连轧机组中心线检测 • 轧钢机械振动故障的诊断 • 轧次计划优化算法 • 断带预测分析 • 带钢卷取温度高精度预报 • 带钢跑偏预测分析 • 掉顶头异常识别 • 热轧管材表面质检 • 钢管识别跟踪 • 铸管外表面缺陷自动检测
    0 码力 | 76 页 | 5.02 MB | 5 月前
    3
  • pdf文档 Manus AI:Agent元年开启

    9):;<=>Manus ?@A+'BCDEFGHIJK,LMN OPQMR<"S>TUVWXY3 less structure more intelligence GZ[5\]^_`abcde_`fgchi_`jEc'k_` lm,no computer usecdeep researchccoding agent pqrstuvwxyz{|}~•G)€>•JK‚ƒ Manus,•P„…†‡ ˆ‰Š‹xG'B,LJKŒkF • ManusÐ!ÑÒÓ*GÔg<Õ5 • uvÖk5tAIןØAI AgentGÙÚÛ© • ÜÝÞßà5zChromeCEdgeÜÝÞáâAIŸ ßà,QŸ%ãLäå°æ3çècéœYouTubeêëcìíGmail/LinkedIn/Twitter•º p> • Ž4CîïÁ%5áâŽ4CîïÁ%kð,ñ%ã•ÌòPòóñ%AIŸ ôK> • AIdeAPIõö5z÷øÕáâAPIõö µdeG÷øÕf$2°,67ËþæacCFWghXFPŸ R³Œjk Clm<ÑG]nopmqr>st2022E,FPŸ R<100'u#xÆS)÷ø,vw60+3C,ôK40[+cC%ã,xŸcCyz 7700[+FW{ã,|/5nFW}$~•> • L€Monica•‚,9€Œ"ƒ<„…Muv,ƒ5†D‡[ˆ%GD‡5†IJÞ--‰Š!ƒD‡5†[ˆGfigma>
    0 码力 | 23 页 | 4.87 MB | 5 月前
    3
  • pdf文档 Trends Artificial Intelligence

    language models shown (per Epoch AI, includes state of the art improvement on a recognized benchmark, >1K citations, historically relevant, with significant use). Source: Epoch AI (5/25) Training Dataset language models shown (per Epoch AI, includes state of the art improvement on a recognized benchmark, >1K citations, historically relevant, with significant use). Source: Epoch AI (5/25) Training Compute 5MM 6MM 0 3 6 Number of Developers (MM) 7K 27K 0 15 30 2021 2025 Number of AI Startups (K) Number of Applications Using GPUs (K) 1.7K 4K 0 2.5 5 +2.4x +3.9x +2.4x Technology Ecosystem
    0 码力 | 340 页 | 12.14 MB | 4 月前
    3
  • pdf文档 julia 1.10.10

    accurate log(1+x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x Trigonometric and hyperbolic functions All the standard a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 1692 页 | 6.34 MB | 3 月前
    3
  • pdf文档 Julia 1.10.9

    accurate log(1+x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x Trigonometric and hyperbolic functions All the standard a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 1692 页 | 6.34 MB | 3 月前
    3
  • pdf文档 Julia 1.11.4

    log(1 + x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x Powers, logs and roots For an overview of why functions a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.5 Documentation

    log(1 + x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x Powers, logs and roots For an overview of why functions a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.6 Release Notes

    log(1 + x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x Powers, logs and roots For an overview of why functions a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 julia 1.13.0 DEV

    log(1 + x) for x near zero exponent(x) binary exponent of x significand(x) binary significand (a.k.a. mantissa) of a floating-point number x sin cos tan cot sec csc sinh cosh tanh coth sech csch asin a substring using range indexing: julia> str[4:9] "lo, wo" Notice that the expressions str[k] and str[k:k] do not give the same result: julia> str[6] ',': ASCII/Unicode U+002C (category Po: Punctuation iterated over at the same time in a single for loop using zip: julia> for (j, k) in zip([1 2 3], [4 5 6 7]) println((j,k)) end (1, 4) (2, 5) (3, 6) Using zip will create an iterator that is a tuple
    0 码力 | 2058 页 | 7.45 MB | 3 月前
    3
共 25 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
Rust程序设计程序设计语言简体中文文版中文版简体中文版1.85周鸿祎清华演讲DeepSeek我们带来创业机会360202502ManusAIAgent元年开启TrendsArtificialIntelligencejulia1.1010Julia1.11DocumentationReleaseNotes1.13DEV
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩