C++
拒绝New一个对象
这个作者很懒,什么都没留下…
展开
-
交换变量
三变量交换法: #include int main() { int a,b,t; scanf("%d%d",&a,&b); t = a; a = b; b = t; printf("%d %d\n" , a ,b ); return 0; } 不借助其他变量: #include int main() {原创 2017-09-06 11:16:55 · 190 阅读 · 0 评论 -
scanf函数的返回值
scanf函数的返回值就是成功输入的变量个数原创 2017-09-06 17:40:23 · 267 阅读 · 0 评论 -
C语言文件读写
重定向方式: 读:freopen("filenamein","r",stdin); 写:freopen("filenameout","w",stdout); fopen方式: 读:File *fin; fin = stdin; fin = fopen("filenamein","rb"); fscanf(fin,"%d",&x); fclose(fin); 写:File原创 2017-09-06 21:51:58 · 320 阅读 · 0 评论 -
malloc,calloc和realloc
C语言在进行动态内存时常会用到的三个函数分别是malloc,calloc和realloc。 malloc函数原型为:void *malloc(size_t size); malloc的作用用于在内存中开辟连续的size个字节,并返回该内存块的起始地址,如果开辟内存失败,则返回NULL指针。 通常情况下,直接写出size为多少有些不太方便,这样的程序也不方便移植。如: int *p=mal原创 2017-10-13 13:29:56 · 240 阅读 · 0 评论 -
872.Leaf-Similar Trees
872.Leaf-Similar Trees 题目链接:原题 题目大意: 比较两个二叉树的所有叶子结点是否相同(顺序和数值均相同),如果相同,则返回True,否则返回False。 思路: 采用DFS(Depth-First-Search)遍历得到二叉树的所有叶子节点,并按照顺序存入数组中,最后比较两个数组是否相同,如果相同,则返回True,否则返回False。 代码: /** ...原创 2018-07-23 17:23:25 · 183 阅读 · 0 评论 -
LeetCode题解(除加锁,正在完善)
以下是每个题对应的题解: LeetCode 1 : Two Sum 点此查看 LeetCode 2 : Add Two Numbers点此查看 LeetCode 3 : Longest Substring Without Repeating Characters点此查看 正在更新中……...原创 2018-10-15 13:33:20 · 903 阅读 · 0 评论 -
LeetCode 1 : Two Sum(两数之和)
题目: Given an array of integers, returnindicesof the two numbers such that they add up to a specific target. You may assume that each input would haveexactlyone solution, and you may not use the...原创 2018-10-15 13:40:07 · 179 阅读 · 0 评论 -
LeetCode 2 : Add Two Numbers(两数相加)
题目: You are given twonon-emptylinked lists representing two non-negative integers. The digits are stored inreverse orderand each of their nodes contain a single digit. Add the two numbers and ret...原创 2018-10-16 15:04:15 · 144 阅读 · 0 评论 -
LeetCode 3:Longest Substring Without Repeating Characters(无重复字符的最长子串)
题目: Given a string,find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2...原创 2018-10-23 16:42:21 · 114 阅读 · 0 评论