码迷,mamicode.com
首页 >  
搜索关键字:single number2    ( 5106个结果
7-4 Dijkstra Sequence (30分)
Dijkstra's algorithm is one of the very famous greedy algorithms. It is used for solving the single source shortest path problem which gives the short ...
分类:其他好文   时间:2020-07-24 21:53:35    阅读次数:107
OpenCL设计优化(基于Intel FPGA SDK for OpenCL)
1、首先了解Intel FPGA SDK for OpenCL实现OpenCL的设计组件,包括: kernels, global memory interconnect, local memory, loops 以及channels (1) Kernels Loops一般是Kernel优化的重点,尤 ...
分类:其他好文   时间:2020-07-24 21:20:09    阅读次数:88
Node.js 蚕食计划(七)—— MongoDB + GraphQL + Vue 初体验
首先需要搭建一个简单的应用 前端部分不多赘述,如果确实没接触过 Vue 项目,可以参考我的《Vue 爬坑之路》系列 后端服务可以参考之前的文章《Node.js 蚕食计划(六)—— MongoDB + Koa 入门》 完整的项目地址:https://github.com/wisewrong/Test- ...
分类:数据库   时间:2020-07-24 16:25:18    阅读次数:85
设计模式之单例模式
一、概念 JVM中,单例对象只有一个实例存在。 二、饿汉式实现 public class Singleton { private static Singleton instance = new Singleton(); private Singleton() { } public static Si ...
分类:其他好文   时间:2020-07-24 09:45:07    阅读次数:76
腾讯云短息验证码接口
一、腾讯云短信服务申请流程 1、注册一个微信公众号(选订阅号,目前只有该方式无需提供社会资质),主页截图。 2、注册并登录腾讯云(需要用到公众号主页截图):https://console.cloud.tencent.com/,选择短信业务,购买套餐包(可免费领取)。 3、创建签名模板(需要审核)。 ...
分类:其他好文   时间:2020-07-23 23:03:57    阅读次数:116
LinkedList源码解析-Java8
目录 一.LinkedList介绍 二.LinkedList源码解析 2.1 链表元素类型-Node 2.2 重要的属性 2.3 构造方法 2.4 获取元素 2.4.1 getFirst和getLast 2.4.2 get 2.5 添加元素 2.5.1 add 2.5.2 addFirst和addL ...
分类:编程语言   时间:2020-07-19 17:46:23    阅读次数:59
hdu 4283You Are the One
The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The sho ...
分类:其他好文   时间:2020-07-18 00:42:55    阅读次数:89
C. Given Length and Sum of Digits... (贪心)
https://codeforces.com/problemset/problem/489/C C. Given Length and Sum of Digits... You have a positive integer m and a non-negative integer s. Your ...
分类:其他好文   时间:2020-07-17 22:18:10    阅读次数:71
docker常见项目
ELK docker pull elasticsearch:6.7.1docker pull kibana:6.7.1docker pull logstash:6.7.1docker run -itd --name elasticsearch6.7.1 -p 9200:9200 -p 9300:93 ...
分类:其他好文   时间:2020-07-17 19:41:08    阅读次数:58
leetcode260 Single Number III
260 Single Number III Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. ...
分类:其他好文   时间:2020-07-14 21:54:31    阅读次数:104
5106条   上一页 1 ... 9 10 11 12 13 ... 511 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!