1、什么是B/S架构?什么是C/S架构1.B/S(Browser/Server),浏览器/服务器程序2.C/S(Client/Server),客户端/服务端,桌面应用程序2、Java都有那些开发平台?1.JAVASE:主要用在客户端开发2.JAVAEE:主要用在web应用程序开发3.JAVAME:主要用在嵌入式应用程序开发3、什么是JDK?什么是JRE?1.JDK:javadevelopmentk
分类:
编程语言 时间:
2020-04-29 23:50:02
阅读次数:
131
Problem : Given a string, find the length of the longest substring without repeating characters. Example 1: Example 2: Example 3: 思路 : Solution (C++) ...
分类:
其他好文 时间:
2020-04-29 21:42:00
阅读次数:
51
题目英文版: The only difference between the easy and the hard versions is the maximum value of k. You are given an infinite sequence of form "1121231234123 ...
分类:
其他好文 时间:
2020-04-28 12:33:44
阅读次数:
91
This time your job is to fill a sequence of N positive integers into a spiral matrix in non-increasing order. A spiral matrix is filled in from the fi ...
分类:
其他好文 时间:
2020-04-28 00:48:51
阅读次数:
67
#include "stdafx.h" #include <iostream> #include <cstdlib> static int _sumFibSeq(const int n, int pArrayFib[]) { if (0 != pArrayFib[n - 1]){ return pA ...
分类:
其他好文 时间:
2020-04-28 00:33:16
阅读次数:
42
题目描述 The only difference between the easy and the hard versions is the maximum value of k. You are given an infinite sequence of form "112123123412345 ...
分类:
其他好文 时间:
2020-04-27 22:17:24
阅读次数:
94
题目 (直接上简陋翻译中文版了……)有一个无限长的数字序列,其组成为1 1 2 1 2 3 1 …… 1 2 …… n ……,即重复的1 ~ 1 , 1 ~ 2 …… 1 ~ n,给你一个 $k$ ,求第$k$个数字是什么。 解说 easy version 其实这个题是有两个版本的,easy ver ...
分类:
其他好文 时间:
2020-04-27 19:14:05
阅读次数:
53
dubbo框架一共支持9种协议。其中,默认的,也是最常用的,那就是dubbo协议。 既然是协议,那么,就需要有端口。 所以,在使用dubbo协议暴露服务时,需要配置dubbo端口。 dubbo协议的默认端口是20880。 springboot配置: dubbo: application: name: ...
分类:
其他好文 时间:
2020-04-27 19:09:10
阅读次数:
322
https://mp.weixin.qq.com/s?__biz=Mzg3NjE5MDI5NA==&mid=2247483859&idx=1&sn=c6ffa5c938f893f6cebb5a7979a1d8e0&chksm=cf374eeaf840c7fcbfab9e0a85cf317f6afc9 ...
分类:
移动开发 时间:
2020-04-26 18:54:39
阅读次数:
227
You are given two integers aa and bb. You can perform a sequence of operations: during the first operation you choose one of these numbers and increas ...
分类:
其他好文 时间:
2020-04-26 10:35:56
阅读次数:
78