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

无数据

分类

全部后端开发(15)综合其他(10)Julia(10)Blender(10)前端开发(3)系统运维(1)JavaScript(1)Go(1)Swift(1)Kotlin(1)

语言

全部中文(繁体)(30)

格式

全部PDF文档 PDF(30)
 
本次搜索耗时 0.375 秒,为您找到相关结果约 30 个.
  • 全部
  • 后端开发
  • 综合其他
  • Julia
  • Blender
  • 前端开发
  • 系统运维
  • JavaScript
  • Go
  • Swift
  • Kotlin
  • 全部
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Hello 算法 1.2.0 繁体中文 Swift 版

    + 1, … , ? − 1 : // === File: iteration.swift === /* for 迴圈 */ func forLoop(n: Int) -> Int { var res = 0 // 迴圈求和 1, 2, ..., n-1, n for i in 1 ... n { res += i } return res } 第 2 章 複雜度分析 www ⋯ + ? : // === File: iteration.swift === /* while 迴圈 */ func whileLoop(n: Int) -> Int { var res = 0 var i = 1 // 初始化條件變數 // 迴圈求和 1, 2, ..., n-1, n while i <= n { res += i i += 1 // 更新條件變數 } // === File: iteration.swift === /* while 迴圈(兩次更新) */ func whileLoopII(n: Int) -> Int { var res = 0 var i = 1 // 初始化條件變數 // 迴圈求和 1, 4, 10, ... while i <= n { res += i // 更新條件變數 i += 1 i *= 2
    0 码力 | 379 页 | 18.79 MB | 9 月前
    3
  • pdf文档 Hello 算法 1.2.0 繁体中文 Kotlin 版

    為 ?, ? + 1, … , ? − 1 : // === File: iteration.kt === /* for 迴圈 */ fun forLoop(n: Int): Int { var res = 0 // 迴圈求和 1, 2, ..., n-1, n for (i in 1..n) { res += i } return res } 第 2 章 複雜度分析 www + 2 + ⋯ + ? : // === File: iteration.kt === /* while 迴圈 */ fun whileLoop(n: Int): Int { var res = 0 var i = 1 // 初始化條件變數 // 迴圈求和 1, 2, ..., n-1, n while (i <= n) { res += i i++ // 更新條件變數 } return 迴圈實現: // === File: iteration.kt === /* while 迴圈(兩次更新) */ fun whileLoopII(n: Int): Int { var res = 0 var i = 1 // 初始化條件變數 // 迴圈求和 1, 4, 10, ... while (i <= n) { res += i // 更新條件變數 i++ i *= 2
    0 码力 | 382 页 | 18.79 MB | 9 月前
    3
  • pdf文档 Julia 1.11.4

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.5 Documentation

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.6 Release Notes

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Hello 算法 1.2.0 繁体中文 Dart 版

    time_complexity.dart === /* 常數階 */ int constant(int n) { int count = 0; int size = 100000; for (var i = 0; i < size; i++) { count++; } return count; } 2. 線性階 ?(?) 線性階的操作數量相對於輸入資料大小 ? 以線性級別增長。線性階通常出現在單層迴圈中: 以線性級別增長。線性階通常出現在單層迴圈中: // === File: time_complexity.dart === /* 線性階 */ int linear(int n) { int count = 0; for (var i = 0; i < n; i++) { count++; 第 2 章 複雜度分析 www.hello‑algo.com 34 } return count; } 走訪陣列和走訪鏈結串列等操作的時間複雜度均為 === /* 線性階(走訪陣列) */ int arrayTraversal(List nums) { int count = 0; // 迴圈次數與陣列長度成正比 for (var _num in nums) { count++; } return count; } 值得注意的是,輸入資料大小 ? 需根據輸入資料的型別來具體確定。比如在第一個示例中,變數 ? 為輸入資
    0 码力 | 378 页 | 18.77 MB | 9 月前
    3
  • pdf文档 Julia 1.12.0 RC1

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2057 页 | 7.44 MB | 3 月前
    3
  • pdf文档 Julia 1.12.0 Beta4

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2057 页 | 7.44 MB | 3 月前
    3
  • pdf文档 Julia 1.12.0 Beta3

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2057 页 | 7.44 MB | 3 月前
    3
  • pdf文档 julia 1.12.0 beta1

    is written: julia> struct MyUndefVarError <: Exception var::Symbol end julia> Base.showerror(io::IO, e::MyUndefVarError) = print(io, e.var, " not defined") Note When writing an error message, it new variable bindings each time they run. The variable need not be immediately assigned: julia> var1 = let x for i in 1:5 (i == 4) && (x = i; break) end x end 4 Whereas assignments might reassign distinct, but not guaranteed to be printed the same way across sessions. julia> typeof(x -> x + 1) var"#9#10" Types of closures are not necessarily singletons.CHAPTER 12. TYPES 149 julia> addy(y) = x
    0 码力 | 2047 页 | 7.41 MB | 3 月前
    3
共 30 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
Hello算法1.2繁体中文繁体中文SwiftKotlinJulia1.11DocumentationReleaseNotesDart1.12RC1Beta4Beta3juliabeta1
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩