自定义博客皮肤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)
  • 资源 (2)
  • 问答 (1)
  • 收藏
  • 关注

原创 Remove Nth Node From End of List

Given a linked list, remove the nth node from the end of list and return its head. 设置双指针p,q,中间间隔n-1,同时移动,q到最后时,p为要删除的节点 /**  * Definition for singly-linked list.  * struct ListNode {  *     int v

2013-10-31 21:22:33 428

原创 leetcode :Single Number II

原题:Given an array of integers, every element appears three times except for one. Find that single one. class Solution { public:      int  singleNumber(int A[], int n) {          // Note: The Solu

2013-10-31 20:21:44 476

原创 求全排列和组合

第一种方法耗费空间比较大,第二种方法更有技巧 #include using namespace std; #include #include char  a[100]; bool vis[100]; int  ct[100]; int n; int cst ; void dfs(char a[],int i){      if(i == n){          fo

2013-10-31 20:07:05 488

imagine cup 比赛 项目愿景 报告

该 报告 是我在本科阶段 参加 微软 举办的imagine cup 比赛时 写项目说明书时的一个模板 希望能对后来 参加 这个比赛的同学有帮助

2011-07-03

用于 进货 销售 存储 货物 管理客户 的软件

该软件实现了销售管理 进货管理 存储管理 分为入库管理 出库管理 库存管理 客户管理 系统设置 等几大模块 界面美观 可以作为中小型商家来管理自己的店面或公司 不限于任何行业

2011-07-03

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

TA关注的人

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