码迷,mamicode.com
首页 >  
搜索关键字:query end    ( 43100个结果
jsonCPP
jsoncpp是一个用于操作json数据的C++开源库 代码地址:https://github.com/open-source-parsers/jsoncpp 使用文档:http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.h ...
分类:Web程序   时间:2021-05-24 12:49:23    阅读次数:0
插入排序
现实中打牌 接收到新牌后在已有的牌里面进行排序,然后找到属于自己的位置进行插入: 手中的牌永远是有序的 Code package kb.algorithm; public class InsertionSort { public static void main(String[] args) { i ...
分类:编程语言   时间:2021-05-24 12:38:02    阅读次数:0
JavaScript - DOM 克隆节点方法 - cloneNode
JavaScript - DOM 克隆节点方法 - cloneNode 具体看代码即可:(调用者为要克隆的节点) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> < ...
分类:编程语言   时间:2021-05-24 12:37:42    阅读次数:0
参数方程的辨析
前言 当我们学习了直线的参数方程和圆的参数方程后,自然会碰到如何辨析两类参数方程的类型的问题,由于其外形非常相似,仅仅是参数不一样,故需要我们仔细体会。 典例剖析 【北师大选修教材4-4 \(P_{_{38}}\) $A$组第 \(1\) 题】已知参数方程 \(\left\{\begin{array ...
分类:其他好文   时间:2021-05-24 12:09:15    阅读次数:0
leetcode42 接雨水
简介 接雨水. 简单思路 排序, 依次选择最高的柱子,所围城的池塘高度 code class Solution { public: struct zhuzi{ int height; int index; }; bool static cmp(const struct zhuzi &a, const ...
分类:其他好文   时间:2021-05-24 11:50:06    阅读次数:0
冒泡排序
Code package kb.algorithm; public class BubbleSort { public static void main(String[] args) { int[] a = new int[]{3, 6, 4, 9, 1, 7, 2, 5}; sort(a); St ...
分类:编程语言   时间:2021-05-24 11:14:04    阅读次数:0
详解Python变量在内存中的存储
这篇文章主要是对python中的数据进行认识,对于很多初学者来讲,其实数据的认识是最重要的,也是最容易出错的。本文结合数据与内存形态讲解python中的数据,内容包括: 引用与对象 可变数据类型与不可变数据类型 引用传递与值传递 深拷贝与浅拷贝 (id函数:你可以通过python的内置函数 id() ...
分类:编程语言   时间:2021-05-24 11:08:14    阅读次数:0
常用算法(C语言描述)
排序方法 平均情况 最坏情况 最好情况 空间复杂度 稳定性 复杂性 直接插入排序 O(n^2) O(n^2) O(n) O(1) 稳定 简单 希尔排序 O(nlog2n) O(nlog2n) O(1) 不稳定 较复杂 冒泡排序 O(n^2) O(n^2) O(n) O(1) 稳定 简单 快速排序 O ...
分类:编程语言   时间:2021-05-24 10:05:48    阅读次数:0
HTML-表格
表格 表格简单通用、结构稳定所以使用很多 表格的基本结构 - 单元格- 行- 列- 跨行- 跨列 <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><!--表格 ...
分类:Web程序   时间:2021-05-24 09:47:29    阅读次数:0
[Typescript] Dynamic types: Use TypeScript's Mapped Types and Template Literal Types Together
we're going to dive deep into a more complex example in which we combine mapped types, key remapping, template literal types, and indexed access types ...
分类:移动开发   时间:2021-05-24 09:32:51    阅读次数:0
43100条   上一页 1 ... 21 22 23 24 25 ... 4310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!