上一页 1 ··· 3 4 5 6 7

2016年5月18日

2016.5.18——Excel Sheet Column Number

摘要: Excel Sheet Column Number 本题收获: 1.对于字符串中字母转为ASIIC码:string s ;res = s[i]-'A'; 这个res就是数字s[i]-'A'是对ASIIC的操作。 2.对于进制的转换:利用for循环 ,%,/,数组在完成。 3.2中的数组都是从左到右的 阅读全文

posted @ 2016-05-18 22:33 zhuzhu2016 阅读(282) 评论(0) 推荐(0) 编辑

2016.5.17——数组的定义

摘要: 数组的定义 学到的: 1.数组如何定义: 主要有两种: 数组:int a[5]; int a[]={1,2,3} 数组型时要有大小和内容至少一个。 指针:*a 指向数组的第一个元素的地址 如何创建动态数组:int *a; a = new int[n]; 或者 int *a = new int[n]; 阅读全文

posted @ 2016-05-18 20:38 zhuzhu2016 阅读(183) 评论(0) 推荐(0) 编辑

2016.5.17——数组的输入输出

摘要: 数组的输入输出 本次收获: 1.int型数组输入输出 都需要用一个for循环,char型则不用。 1.char型在编辑器输入中的多种方法。 3.如何创建动态数组:int *a; a = new int[n]; 或者 int *a = new int[n];注意数组的定义。 代码1:int型数组的输入 阅读全文

posted @ 2016-05-18 20:26 zhuzhu2016 阅读(479) 评论(0) 推荐(0) 编辑

2016年5月17日

Python——杂记

摘要: python 最近出错总结: 1.而for..in ..中不要用else if x in y: print else: print2.def fibs(num): ... result = [0,1] ... for i in range(num-2): ... result.append(resu 阅读全文

posted @ 2016-05-17 16:09 zhuzhu2016 阅读(224) 评论(0) 推荐(0) 编辑

Python——列表的操作

摘要: 列表的操作:详细+易出错假设有两个列表: list1 = [1,2,3] list2 = ['a','b','c']列表的操作: 1.list.append() append只接受一个参数 append只能在列表的尾部添加元素,不能选择位置添加元素。 以下操作可以看出 >>> list1 = [1, 阅读全文

posted @ 2016-05-17 16:06 zhuzhu2016 阅读(161) 评论(0) 推荐(0) 编辑

2016.5.16——leetcode:Rotate Array,Factorial Trailing Zeroe

摘要: Rotate Array 本题目收获: 题目: Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated 阅读全文

posted @ 2016-05-17 09:32 zhuzhu2016 阅读(211) 评论(0) 推荐(0) 编辑

2016年5月16日

2016.5.16——leetcode:Reverse Bits(超详细讲解)

摘要: leetcode:Reverse Bits 本题目收获 移位(<< >>), 或(|),与(&)计算的妙用 题目: Reverse bits of a given 32 bits unsigned integer.For example, given input 43261596 (represen 阅读全文

posted @ 2016-05-16 10:07 zhuzhu2016 阅读(505) 评论(0) 推荐(0) 编辑

2016年5月15日

2016.5.15——leetcode:Number of 1 Bits ,

摘要: leetcode:Number of 1 Bits 代码均测试通过! 1.Number of 1 Bits 本题收获: 1.Hamming weight:即二进制中1的个数 2.n &= (n-1)【n = n & (n-1)】的用处 题目: Write a function that takes 阅读全文

posted @ 2016-05-15 17:42 zhuzhu2016 阅读(192) 评论(0) 推荐(0) 编辑

2016.5.14——leetcode-HappyNumber,House Robber

摘要: leetcode:HappyNumber,House Robber 1.Happy Number 这个题中收获2点: 1.拿到题以后考虑特殊情况,代码中考虑1和4,或者说<6的情况,动手算下。(可能要在代码一步步测试中发现,目前还不知道怎么知道这些特殊情况) 2.数字的每一位时,n%10,n/10。 阅读全文

posted @ 2016-05-15 15:37 zhuzhu2016 阅读(250) 评论(0) 推荐(0) 编辑

记录学习过程

摘要: 第一次写博客,记录自己学习的过程,我的目标是成为一名合格的程序员! 博文中所有的代码都是通过测试的!C++编译环境 Mircosoft visual studio 2013 Python编译环境 Python 2.7.4 阅读全文

posted @ 2016-05-15 13:52 zhuzhu2016 阅读(141) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7

导航