码迷,mamicode.com
首页 >  
搜索关键字:div footer    ( 120505个结果
Java scanner的使用
scanner scanner 类中的next() , nextLine()方法 package com.study.scanner; import java.util.Scanner; public class a1 { public static void main(String[] args) ...
分类:编程语言   时间:2021-05-04 16:10:05    阅读次数:0
codeforces比赛记录
从寒假 \(2021\) 年 \(1\) 月 \(29\) 日开始记录。 \(\textbf{Educational Codeforces Round 103(Div.2)}\) \(Handle\):mango_god,rating change: \(927→1160\)。 \(Handle\) ...
分类:其他好文   时间:2021-05-04 16:08:55    阅读次数:0
Redis面试必问知识点
一、Redis只有单线程吗? Redis 是单线程的,主要是指 Redis 的网络 I/O 线程,以及键值的 SET 和 GET 等读写操作都是由一个线程来完成的。但 Redis 的持久化、集群同步等操作,则是由另外的线程来执行的。 Redis 6.0 版本之后,为了更好地提高 Redis 的性能, ...
分类:其他好文   时间:2021-05-04 16:03:21    阅读次数:0
每日LeetCode - 1. 两数之和(Python3)
#时间复杂度O(N*N),空间复杂度O(1) #暴力法 def twoSum_baoli(nums: List[int], target:int) -> List[int]: for i in range(len(nums)-1): base = nums[i] for j in range(i+1 ...
分类:编程语言   时间:2021-05-04 15:39:57    阅读次数:0
层次打印二叉树
#include<vector> #include<queue> #include<string> #include<binaryNode.hpp> #include<iostream> #include<sstream> template<typename T> class traverse { ...
分类:其他好文   时间:2021-05-04 15:34:11    阅读次数:0
Qt QWidget保存为图片
Qt QWidget保存为图片 QPixmap pixmap = QPixmap::grabWidget(this); pixmap.save("D://1.jpg","JPG"); ################################### ...
分类:其他好文   时间:2021-05-04 15:24:33    阅读次数:0
python中拆分字符串
python中拆分字符串 1、 >>> test1 = "abxcdxefxfh" >>> test1 'abxcdxefxfh' >>> test1.split(sep = "x") ['ab', 'cd', 'ef', 'fh'] ...
分类:编程语言   时间:2021-05-04 15:23:41    阅读次数:0
c语言 5-12
1、 #include <stdio.h> int main(void) { int i, j, k, a[2][4][3], b[4][3] = {}; for(i = 0; i < 2; i++) { for(j = 0; j < 4; j++) { for(k = 0; k < 3; k++) ...
分类:编程语言   时间:2021-05-03 13:01:48    阅读次数:0
Educational Codeforces Round 108 (Rated for Div. 2)【ABCD】
大家五一快乐呀 (~ ̄▽ ̄)~ 比赛链接:https://codeforces.com/contest/1519 A. Red and Blue Beans 题意 有 \(r\) 个红色豆子和 \(b\) 个蓝色豆子,需要将它们分成几包,要求每包: 至少有一个红色豆子 至少有一个蓝色豆子 两种颜色豆 ...
分类:其他好文   时间:2021-05-03 12:59:22    阅读次数:0
[AWS DA Guru] S3
S3 File Size Single S3 Object can range in size from 0 bytes to 5TB Largest object that can be uploaded in a single PUT request is 5GB For Objects lar ...
分类:其他好文   时间:2021-05-03 12:56:01    阅读次数:0
120505条   上一页 1 ... 43 44 45 46 47 ... 12051 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!