2016年5月30日

2016.5.57—— Remove Duplicates from Sorted List

摘要: Remove Duplicates from Sorted List 本题收获: 指针: 不管什么指针在定义是就初始化:ListNode *head = NULL; 如果给head指针赋值为第一个node节点数,则不需要开辟空间(的语句),直接:head = node; 如果另外赋值,需要开辟内存. 阅读全文

posted @ 2016-05-30 09:31 zhuzhu2016 阅读(161) 评论(0) 推荐(0) 编辑

2016年5月25日

2016.5.24——Intersection of Two Linked Lists

摘要: Intersection of Two Linked Lists 本题收获: 1.链表的输入输出 2.交叉链表:这个链表可以有交叉点,只要前一个节点的的->next相同即可。 题目:Intersection of Two Linked Lists Write a program to find th 阅读全文

posted @ 2016-05-25 20:13 zhuzhu2016 阅读(170) 评论(0) 推荐(0) 编辑

2016.5.25——链表初始化及输出

摘要: 链表初始化及输出 刷lleetcode题时不会写mian函数,于是把链表的几种输出总结一下。 阅读全文

posted @ 2016-05-25 16:13 zhuzhu2016 阅读(186) 评论(0) 推荐(0) 编辑

2016年5月22日

2016.5.21——atoi()函数的测试

摘要: 对函数atoi()函数的测试: atoi()函数将字符串型转换为整型 代码: 注意定义字符串型时不能定义成string,而要定义为char型。否则出错:error C2664: “int atoi(const char *)”: 无法将参数 1 从“std::string [1]”转换为“const 阅读全文

posted @ 2016-05-22 11:52 zhuzhu2016 阅读(275) 评论(0) 推荐(0) 编辑

2016年5月21日

2016.5.21——Compare Version Numbers

摘要: Compare Version Numbers 本题收获: 1.字符串型数字转化为整型数字的方法:s[i] - '0',( 将字母转化为数字是[i]-'A' ) 2.srt.at(),substr(),atoi() 3.字符串型数组的定义:string str[3]={“aaaa”,"bbbb"," 阅读全文

posted @ 2016-05-21 23:22 zhuzhu2016 阅读(215) 评论(0) 推荐(0) 编辑

Python——脚本(calculator)

摘要: 《Python基础教程》(第二版) P123 书中原代码如下: 然后在代码行输入: >>tc = TalkingCalculator() >>tc.calculator('1+2*3') >>tc.talk() 输出:hi,my value is 7 改成脚本后的代码如下: 本例中: 1.注意到在t 阅读全文

posted @ 2016-05-21 16:18 zhuzhu2016 阅读(1757) 评论(0) 推荐(0) 编辑

python——脚本和print

摘要: 脚本和print 1.脚本文件 《Python 基础教程》(第二版)中 P118页,原操作为下: 之后在命令行输入 >>foo == Person() >>foo.setName('luke skywalke') >>foo.greet() 修改成文本后的完整脚本: 运行结果:L14运行结果 注意1 阅读全文

posted @ 2016-05-21 11:28 zhuzhu2016 阅读(845) 评论(0) 推荐(0) 编辑

2016年5月19日

2016.5.19——Excel Sheet Column Title

摘要: Excel Sheet Column Title 本题收获: 1.由int型转换为整型(string),如何转化, res = 'A'+(n-1)%26和之前由A-z转化为十进制相反,res = s[i]-'A'+1.(为什么有+1,-1还有点迷糊,貌似是十进制是0-9,26进制是) 2.十进制到2 阅读全文

posted @ 2016-05-19 23:00 zhuzhu2016 阅读(193) 评论(0) 推荐(0) 编辑

2016.5.19——vector型的输入输出

摘要: vector型的输入输出 在上节2015.5.18——leetcode:Majority Element中纠结vector的动态输入输出问题,但是发现vector传参型的不可以动态输入输出,但是vector可以,附上运行代码。 对于vector型补充几点问题: 假设为vector<int> res; 阅读全文

posted @ 2016-05-19 17:31 zhuzhu2016 阅读(826) 评论(0) 推荐(0) 编辑

2016.5.18——leetcode:Majority Element

摘要: Majority Element 本题收获: 1.初步了解hash,nth_element的用法 2.题目的常规思路 题目: Given an array of size n, find the majority element. The majority element is the elemen 阅读全文

posted @ 2016-05-19 14:39 zhuzhu2016 阅读(153) 评论(0) 推荐(0) 编辑

导航