要减肥冰棍

文章
3
资源
0
加入时间
2年10月21天

数据结构二叉树——递归遍历

#include <iostream>#include <cstdlib>using namespace std;struct BinTreeNode{int date;BinTreeNode *liftChild, *rightChild;}class BinaryTree{public:BinaryTree();BinaryTre...

eureka原理分析

Eureka是Netflix开源的一款提供服务注册和发现的产品,github地址为https://github.com/Netflix/eureka。注册中心是分布式开发的核心组件之一,而eureka是spring cloud推荐的注册中心实现,因此对于Java开发同学来说,还是有必要学习eureka的,特别是其架构及设计思想。官方文档定义是:Eureka is a REST (Representational State Transfer) based service that is prim