码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
C#中对xml数据的读取和写入
C#中对xml数据的读取和写入: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System.Xml; using ...
分类:Windows程序   时间:2021-04-19 14:41:06    阅读次数:0
旋转数字
此博客链接: 旋转数字 题目链接:https://leetcode-cn.com/problems/rotated-digits/ 题目 我们称一个数 X 为好数, 如果它的每位数字逐个地被旋转 180 度后,我们仍可以得到一个有效的,且和 X 不同的数。要求每位数字都要被旋转。 如果一个数的每位数 ...
分类:其他好文   时间:2021-04-16 12:16:24    阅读次数:0
冒泡排序
package com.smile.test.sort.bubble; /** * 冒泡排序 时间复杂度O(n^2) */ public class Bubble { static void sort(Comparable[] a){ for (int i = a.length-1; i>0; i- ...
分类:编程语言   时间:2021-04-16 12:06:55    阅读次数:0
Ubuntu安装docker/docker-compose(在全新系统状态下的安装)
设置仓库 更新 apt 包索引。 $ sudo apt-get update 安装 apt 依赖包,用于通过HTTPS来获取仓库: $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent ...
分类:系统相关   时间:2021-04-16 11:59:52    阅读次数:0
Capture Data.dmg
苹果apple mac 系统检测 日常分析 软件 https://gigafiles.apple.com/#/download 现有文件可供下载。 备注 Capture Data 9.9.0 This application gathers information from your system ...
分类:其他好文   时间:2021-04-16 11:49:46    阅读次数:0
Java数组遍历的几种方式
数组遍历方式参考: 方法一:for循环遍历 public static void main(String[] args) { int Arr[][]={{1,2,3},{4,5,6}}; for (int i = 0; i < Arr.length; i++) { for (int j = 0; j ...
分类:编程语言   时间:2021-04-16 11:45:39    阅读次数:0
Python如何将字典列表转换为元组列表(Python how to convert a list of dict to a list of tuples)
I have a list of dict that looks like this: list=[{u'hello':['001', 3], u'word':['003', 1], u'boy':['002', 2]}, {u'dad':['007', 3], u'mom':['005', 3], ...
分类:编程语言   时间:2021-04-15 12:42:23    阅读次数:0
数组与链表
数组 1、数组中的数据类型是一致的; 2、数组元素在内存中是连续的; 3、数组中每个元素占用空间大小是相同的(length); 4、数组元素存放的是数据的地址的值。 5、查找数组中第i个元素,首个元素的地址address + (i * length),时间复杂度为O(1); 特点: 1、大小固定 2 ...
分类:编程语言   时间:2021-04-15 12:32:35    阅读次数:0
MyBatis操作数据库
mybatis对数据库的增删改查用<insert>字段来对数据库进行增加操作 <insert id="save" parameterType="mybatis.domain.user" keyColumn="id" keyProperty="id" useGeneratedKeys="true">I ...
分类:数据库   时间:2021-04-14 12:29:41    阅读次数:0
Echarts——Invalid geoJson format Cannot read property 'length' of undefined
前言 做一个地图下钻的echarts,发现点击某几个县市的时候,报错Invalid geoJson format Cannot read property 'length' of undefined, 对比数据发现出现报错原因是因为数据类型中有GeometryCollection存在,但是echar ...
分类:Web程序   时间:2021-04-14 12:15:56    阅读次数:0
36649条   上一页 1 ... 24 25 26 27 28 ... 3665 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!