摘要:
Given a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5","7"].分析:题意为给定一... 阅读全文
摘要:
一、Rising Temperature Given a Weather table, write a SQL query to find all dates' Ids with higher temperature compared to its previous (yesterday's) da 阅读全文
摘要:
最近才开通博客,决定把前段时间的东西给记录下来!幸好有做存档。笔试题型: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)操作对象有所不同。malloc与free是C++/C 语言的标准库函数,new/delete 是C++的运算符。对于非内部数据类的对象而言,光用maloc/free 无法满足动态对象的要求。对象在创建的同时要自动执行构造函数, 对象消亡之前要自动执... 阅读全文
摘要:
static_cast一般用来将枚举类型转换成整型,或者整型转换成浮点型。也可以用来将指向父类的指针转换成指向子类的指针。做这些转换前,你必须确定要转换的数据确实是目标类型的数据,因为static_cast不做运行时的类型检查以保证转换的安全性。也因此,static_cast不如dynamic_ca... 阅读全文
摘要:
按照默认规定,只有一个参数的构造函数也定义了一个隐式转换,将该构造函数对应的数据类型的数据转换为该类对象,如下所示:[cpp]view plaincopyclassString{String(constchar*p)//用C风格的字符串p作为初始值//........}Strings1="hello... 阅读全文
摘要:
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No... 阅读全文
摘要:
Reverse a singly linked list.代码如下:the iterative solution:(c++)/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNo... 阅读全文
摘要:
Givenn, how many structurally uniqueBST's(binary search trees) that store values 1...n?For example,Givenn= 3, there are a total of 5 unique BST's. 1... 阅读全文