摘要:
Overview O(n^2) Selection Sort Insertion Sort O(nlogn) Merge Sort Quick Sort Selection Sort :O(n^2) int selectionSort(int a[],int target){ int min; fo 阅读全文
摘要:
一.简介 由Netflix开发的基于HTTP REST的服务,整合进Spring Cloud所以用的多 Eureka遵守AP原则 用于服务注册发现、负载均衡、故障转移 采用C/S架构 包含两个组件:Eureka Server和Eureka Client 二.结构 Eureka Server提供服务注 阅读全文
摘要:
一.Overview resource constraints: space time Data Structure array, stack, queue, priority queue, linked list, tree, heap, graph For most algorithms, ru 阅读全文
摘要:
四.SQL高级教程 1.SQL SELECT TOP 子句 SELECT TOP 子句用于规定要返回的记录的数目 SELECT TOP 子句对于拥有数千条记录的大型表来说,是非常有用的 (1)SQL Server / MS Access 语法 SELECT TOP number|percent co 阅读全文
摘要:
1、总体概述 1.1什么是微服务,微服务和微服务架构的区别 目前而言,对于微服务业界没有一个统一的标准定义,但是通常而言提倡把一个单一的应用程序划分为一组小的服务,每个小的服务都会运行在自己的进程中,服务之间通过轻量级的通信机制(http的rest api)进行通信,那么一个个的小服务就是微服务。 阅读全文
摘要:
1.使用Maven构建项目 访问http://start.spring.io/ 并选择参数 点击generate 下载文件打开 发现springboot有三个文件 src/main/java下包含程序的主要运行文件 src/main/resources下包含程序的配置文件 src/test下包含测试 阅读全文
摘要:
目标:对文件进行数据分析 1.环境配置 https://blog.csdn.net/weixin_42032429/article/details/83095899 2.连接文件 安装xlsx软件包 安装顺序 https://www.cnblogs.com/chenlu-vera/p/9334142 阅读全文
摘要:
1.Amazon Simple Storage Service (Amazon S3) 1.1 Overview of AWS S3 Amazon Simple Storage Service (Amazon S3) is an object storage service that offers 阅读全文
摘要:
一.Using python to access DynamoDB. Inside the command prompt, enter: aws configure --profile dbaccess Install the boto3 library using pip (if you have 阅读全文
摘要:
本次复习按照菜鸟教程文档学习,原地址:https://www.runoob.com/sql/sql-between.html 一.SQL简介 1.RDBMS 表示关系型数据库管理系统 2.注意事项 SQL 对大小写不敏感:SELECT 与 select 是相同的 sql语句末尾只有写了;才会执行 二 阅读全文