码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
ReentrantLock锁
ReentrantLock是可重入锁,并且可以实现公平锁。Sychronized是可重入锁、非公平锁。 话不多说,上demo: 1 package com.example.demo.util; 2 3 import java.util.concurrent.locks.ReentrantLock; ...
分类:其他好文   时间:2021-04-12 12:54:59    阅读次数:0
977. Squares of a Sorted Array
Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. Example 1: I ...
分类:其他好文   时间:2021-04-08 13:55:44    阅读次数:0
ADA 95教程 字符和字符串类型
字符类型的快速回顾 Example program > e_c11_p1.ada -- Chapter 11 - Program 1 with Ada.Text_IO; use Ada.Text_IO; procedure Chars is My_Char : CHARACTER; Another ...
分类:其他好文   时间:2021-04-08 13:35:09    阅读次数:0
pat甲级 1031 Hello World for U
题目: Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l ...
分类:其他好文   时间:2021-04-08 13:31:19    阅读次数:0
websocket原理和基于c/c++实现的websocket协议栈(更新中)
参考: 博客1:http://blog.sina.com.cn/s/blog_bf397e780102w25k.html 目录: 第一部分:http原理简述 第二部分:websocket原理简述 第三部分:websocket与http的区别 第四部分:基于c/c++实现一个websocket协议栈 ...
分类:编程语言   时间:2021-04-07 11:25:52    阅读次数:0
[LeetCode] 775. Global and Local Inversions
We have some permutation A of [0, 1, ..., N - 1], where N is the length of A. The number of (global) inversions is the number of i < j with 0 <= i < j ...
分类:其他好文   时间:2021-04-07 11:05:47    阅读次数:0
[Docker] MACVLAN Network 簡介
此篇文章介紹 Docker MACVLAN Network 及其運作方式 環境介紹 以下的測試將會在以下環境進行: OS:Ubuntu 18.04 Docker: 18.03.1-ce 網卡配置: eth0:10.103.19.0/24 eth1:trunk port (10.103.[17-18] ...
分类:Web程序   时间:2021-04-02 13:35:18    阅读次数:0
174. Dungeon Game
问题: 勇士救公主问题。 勇士从左上角[0,0]出发,要到达右下角[n-1,m-1]公主所在。 只能向右or向下移动。 格子上的数字代表:加减血。 若到达某个格子勇士血量<1那么,勇士立即死亡。游戏失败。 求,至少在出发时,勇士的初始血量是多少。 Example 1: Input: dungeon ...
分类:其他好文   时间:2021-04-02 13:09:41    阅读次数:0
QT项目-Chart Themes Example学习(一)
1.main.cpp #include "themewidget.h" #include <QtWidgets/QApplication> #include <QtWidgets/QMainWindow> int main(int argc, char *argv[]) { QApplication ...
分类:其他好文   时间:2021-04-01 13:27:59    阅读次数:0
CMDA 3634 SP2021
CMDA 3634 SP2021使用OpenMP Project 03并行化波动方程项目03:使用OpenMP并行化波动方程版本:当前截至:2021-03-22 14:30:01到期的:–准备:2021-03-30 23:59:00–编码和分析:2021-04-09 23:59:00(24小时宽限期 ...
分类:其他好文   时间:2021-04-01 13:20:22    阅读次数:0
17798条   上一页 1 ... 5 6 7 8 9 ... 1780 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!