数据结构与算法
qq_26620955
这个作者很懒,什么都没留下…
展开
-
数据结构与算法之——二叉树的创建及遍历
C语言二叉树的创建及遍历 创建与遍历都是是采用递归的思想 在遍历的同时还输出了结点所在二叉树的层数 // ctest.cpp : 定义控制台应用程序的入口点。 //#include "stdafx.h" #include<stdio.h> #include<stdlib.h> typedef struct BiTNode{ char data; struct BiTNode原创 2017-03-08 19:17:45 · 516 阅读 · 0 评论 -
数组练习
#include "stdafx.h" #include <stdio.h> #include <stdlib.h> int main(){ int n; int i = 0, j = 0; int a[4][4] = { { 1, 2, 8, 9 }, { 2, 4, 9, 12 }, { 4, 7, 10, 13 }, { 6, 8, 11, 15 } }; pr原创 2017-06-18 11:18:53 · 205 阅读 · 0 评论 -
关于字符串和指针的一道小例题
运行下列代码,会得到什么结果? 运行结果:str1 and str2 are not same. str3 and str4 are same.解释 str1和str2是两个字符串数组,我们会为它们分配两个长度为12个字节的空间,并把“hello world”的内容分别复制到数组中去。这是两个初始地址不同的数组,所以,str1和str2的值也不同。 str3和str4是两个指针,我原创 2017-06-18 11:32:50 · 303 阅读 · 0 评论