自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 A. (网预)Saber's Conjecture 第十一届北京邮电大学程序设计竞赛 - 热身赛 (1)

时间限制 1000 ms 内存限制 65536 KB题目描述In a parallel universe, young Saber-chan does not have a humongous appetite, instead, she likes studying math in her spare time. This afternoon when Saber-chan is plunged

2017-04-02 11:28:10 653

原创 20170329VMware在线笔试

设函数f(x)表示x!导0的个数,g(x)表示满足f(y)=x的最小值y。实现g(x),若不存在y返回-1. eg: 输入1,返回5 输入2,返回10 输入3,返回15 输入4,返回20 输入5,返回-1 hint:

2017-04-02 11:17:42 1540

原创 104. Maximum Depth of Binary Tree

求二叉树深度 第一次提交: int maxDepth(struct TreeNode* root) {     if(!root) return 0;     if(root->left)         return maxDepth(root->left)+1 ;     if(root->right)         return(maxDepth(

2016-02-20 21:44:57 246

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除