摘要:
最近才开通博客,决定把前段时间的东西给记录下来!幸好有做存档。笔试题型:10道选择题+10道问答题1.分布式集群中的session管理有哪些实现模式?1SessionReplication方式管理(即session复制)简介:将一台机器上的Session数据广播复制到集群中其余机器上使用场景:机器较... 阅读全文
摘要:
SQL面试题(1)create table testtable1(id int IDENTITY,department varchar(12))select * from testtable1insert into testtable1 values('设计')insert into testtab... 阅读全文
摘要:
(积累)多学习原生态术语:1、What is polymorphism(多态)?'Polymorphism'is an object oriented term. Polymorphism may be defined as the ability of related objects to res... 阅读全文
摘要:
为说明思想,假设队列、栈都很大,不会出现满的情况。1. 两个栈实现队列//前提已知:struct Stack{ int top; //栈顶指针 int stacksize;//栈的大小 int *s; //栈底指针};void InitStack(Stack *s... 阅读全文