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

无数据

分类

全部后端开发(21)综合其他(10)Julia(10)Blender(10)前端开发(3)系统运维(2)Linux(2)Rust(2)Java(1)Python(1)

语言

全部中文(繁体)(36)

格式

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

    // === File: recursion.dart === /* 使用迭代模擬遞迴 */ int forLoopRecur(int n) { // 使用一個顯式的堆疊來模擬系統呼叫堆疊 List stack = []; int res = 0; // 遞:遞迴呼叫 for (int i = n; i > 0; i--) { // 透過“入堆疊操作”模擬“遞” stack (?) ,其中 ? 為陣列或鏈結串列的長度: // === File: time_complexity.dart === /* 線性階(走訪陣列) */ int arrayTraversal(List nums) { int count = 0; // 迴圈次數與陣列長度成正比 for (var _num in nums) { count++; } return count; 此時間複雜度為 ?((? − 1)?/2) = ?(?2) : // === File: time_complexity.dart === /* 平方階(泡沫排序) */ int bubbleSort(List nums) { int count = 0; // 計數器 // 外迴圈:未排序區間為 [0, i] for (var i = nums.length - 1; i > 0; i--)
    0 码力 | 378 页 | 18.77 MB | 10 月前
    3
  • pdf文档 Hello 算法 1.2.0 繁体中文 Python 版

    走訪陣列和走訪鏈結串列等操作的時間複雜度均為 ?(?) ,其中 ? 為陣列或鏈結串列的長度: # === File: time_complexity.py === def array_traversal(nums: list[int]) -> int: """ 線性階(走訪陣列)""" count = 0 # 迴圈次數與陣列長度成正比 for num in nums: count += 1 return count /2 次,因 此時間複雜度為 ?((? − 1)?/2) = ?(?2) : # === File: time_complexity.py === def bubble_sort(nums: list[int]) -> int: """ 平方階(泡沫排序)""" count = 0 # 計數器 # 外迴圈:未排序區間為 [0, i] for i in range(len(nums) - int) -> list[int]: """ 生成一個陣列,元素為: 1, 2, ..., n ,順序被打亂""" # 生成陣列 nums =: 1, 2, 3, ..., n nums = [i for i in range(1, n + 1)] # 隨機打亂陣列元素 random.shuffle(nums) return nums def find_one(nums: list[int])
    0 码力 | 364 页 | 18.74 MB | 10 月前
    3
  • pdf文档 Hello 算法 1.2.0 繁体中文 C# 版

    */ void Linear(int n) { // 長度為 n 的陣列佔用 O(n) 空間 int[] nums = new int[n]; // 長度為 n 的串列佔用 O(n) 空間 List nodes = []; for (int i = 0; i < n; i++) { nodes.Add(new ListNode(i)); } // 長度為 n 的雜湊表佔用 O(n^2) 空間 int[,] numMatrix = new int[n, n]; // 二維串列佔用 O(n^2) 空間 List<List> numList = []; for (int i = 0; i < n; i++) { List tmp = []; for (int j = 0; j < n; j++) { tmp.Add(0); } numList 間可能散落在記憶體各 處。我們知道,儲存陣列的記憶體空間必須是連續的,而當陣列非常大時,記憶體可能無法提供如此大的連 續空間。此時鏈結串列的靈活性優勢就體現出來了。 鏈結串列(linked list)是一種線性資料結構,其中的每個元素都是一個節點物件,各個節點透過“引用”相 連線。引用記錄了下一個節點的記憶體位址,透過它可以從當前節點訪問到下一個節點。 第 4 章 陣列與鏈結串列 www
    0 码力 | 379 页 | 18.79 MB | 10 月前
    3
  • pdf文档 Hello 算法 1.2.0 繁体中文 Java 版

    */ void linear(int n) { // 長度為 n 的陣列佔用 O(n) 空間 int[] nums = new int[n]; // 長度為 n 的串列佔用 O(n) 空間 List nodes = new ArrayList<>(); for (int i = 0; i < n; i++) { nodes.add(new ListNode(i)); int[][] numMatrix = new int[n][n]; // 二維串列佔用 O(n^2) 空間 List<List> numList = new ArrayList<>(); for (int i = 0; i < n; i++) { List tmp = new ArrayList<>(); for (int j = 0; j < n; 間可能散落在記憶體各 處。我們知道,儲存陣列的記憶體空間必須是連續的,而當陣列非常大時,記憶體可能無法提供如此大的連 續空間。此時鏈結串列的靈活性優勢就體現出來了。 鏈結串列(linked list)是一種線性資料結構,其中的每個元素都是一個節點物件,各個節點透過“引用”相 連線。引用記錄了下一個節點的記憶體位址,透過它可以從當前節點訪問到下一個節點。 第 4 章 陣列與鏈結串列 www
    0 码力 | 379 页 | 18.79 MB | 10 月前
    3
  • pdf文档 Blender v3.4 参考手册(繁体中文版)

    creation workflow. It boasts active community support. See blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version which both systems support such as Hi-DPI, 3D-mouse, tablet input, ... etc. have been left out of this list. *1 In X11 fast cursor motion may exit the window bounds while the cursor is grabbed (transforming also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. See the section Preferences for the complete list of available settings. Language
    0 码力 | 4469 页 | 258.38 MB | 1 年前
    3
  • pdf文档 Blender v3.2 参考手册(繁体中文版)

    creation workflow. It boasts active community support. See blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. See the section Preferences for the complete list of available settings. Language always be changed later in the Preferences. Language The language used in the user interface. The list is broken up into categories determining how complete the translations are. More language preferences
    0 码力 | 4355 页 | 255.63 MB | 1 年前
    3
  • pdf文档 Blender v4.0 参考手册(繁体中文版)

    creation workflow. It boasts active community support. See blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version which both systems support such as Hi-DPI, 3D-mouse, tablet input, ... etc. have been left out of this list. *1 In X11 fast cursor motion may exit the window bounds while the cursor is grabbed (transforming also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. See the section Preferences for the complete list of available settings. Language
    0 码力 | 5220 页 | 303.08 MB | 1 年前
    3
  • pdf文档 Blender v3.1 参考手册(繁体中文版)

    creation workflow. It boasts active community support, see blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version Settings See also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. The full list and explanation of the Preferences are documented in changed later in the Preferences. Language The language used for translating the user interface. The list is broken up into categories determining how complete the translations are. More language preferences
    0 码力 | 4393 页 | 256.31 MB | 1 年前
    3
  • pdf文档 Blender v3.3 参考手册(繁体中文版)

    creation workflow. It boasts active community support. See blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. See the section Preferences for the complete list of available settings. Language always be changed later in the Preferences. Language The language used in the user interface. The list is broken up into categories determining how complete the translations are. More language preferences
    0 码力 | 4464 页 | 259.55 MB | 1 年前
    3
  • pdf文档 Blender v2.92 参考手册(繁体中文版)

    creation workflow. It boasts active community support, see blender.org/community for an extensive list of sites. It has a small executable, which is optionally portable. You can download the latest version Settings See also See Preferences for a complete list of options. 介紹 Here are some preferences that you may wish to set initially. The full list and explanation of the Preferences are documented in changed later in the Preferences. Language The language used for translating the user interface. The list is broken up into categories determining how complete the translations are. More language preferences
    0 码力 | 3966 页 | 203.00 MB | 1 年前
    3
共 36 条
  • 1
  • 2
  • 3
  • 4
前往
页
相关搜索词
Hello算法1.2繁体中文繁体中文DartPythonC#JavaBlenderv3参考手册参考手册v4v292
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩