本文通过模拟汇编里的stack机制,构建一个自己的stack,然后将上一篇blog末尾的递归函数void bst_walk(bst_node_t *root)非递归化. o libstack.h #ifndef _LIBSTACK_H #define _LIBSTACK_H #ifdef __cplusplus extern "C" { #endif typedef void * uintptr_t; /* generic pointer to any struct */ uintpt…
一个被广泛使用的面试题: 给定一个二叉搜索树,请找出其中的第K个大的结点. PS:我第一次在面试的时候被问到这个问题而且让我直接在白纸上写的时候,直接蒙圈了,因为没有刷题准备,所以就会有伤害.(面完的感慨是:千里马常有,伯乐不常有. 互联网公司普遍浮躁,想拿到互联网公司的入场券,我得回去刷题.) 知耻而后勇,于是我回家花了两个半小时(在不参考任何书本和网路上的源码的前提下),从构建BST开始,到实现中序遍历,最后用递归方法写出bst_findKthNode()并用gdb调试成功. 不过,使用递归…
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / \ 2 2 / \ / \ 3 4 4 3 But the following is not: 1 / \ 2 2 \ \ 3 3 Note:Bonus points if you could solve it b…
import java.io.File; import java.util.LinkedList; public class FileSystem {    public static int num;       public static void main(String[] args) {                 long a = System.currentTimeMillis();         //String path="c:";         num=0;…
例题 中序遍历94. Binary Tree Inorder Traversal 先序遍历144. Binary Tree Preorder Traversal 后序遍历145. Binary Tree Postorder Traversal 递归栈 递归函数栈的方法很基础,写法也很简单,三种遍历方式之间只需要改变一行代码的位置即可 中序遍历 /** * Definition for a binary tree node. * struct TreeNode { * int val; * Tre…
初学递归的时候,觉得很抽象,不好分析,确实如此,尤其是有些时候控制语句不对,导致程序进去无限次的调用,更严重的是栈溢出.既要正确的控制结束语句,又要有正确的进入下次递归的语句,还要有些操作语句.......所以要使用递归,必须每一层的思路要相当清晰.而循环和递归还是挺类似的说,循环的次数可以近似的理解为要递归是次数.那么下面我们看看递归和循环的区别: 1.递归实现strcpy函数: 1 void _strcpy(char *to,const char *from) 2 { 3 if('\0' =…
目录 1 问题描述 2 解决方案  2.1 递归法 2.2 非递归法 1 问题描述 Simulate the movement of the Towers of Hanoi Puzzle; Bonus is possible for using animation. e.g. if n = 2 ; A→B ; A→C ; B→C; if n = 3; A→C ; A→B ; C→B ; A→C ; B→A ; B→C ; A→C; 翻译:模拟汉诺塔问题的移动规则:获得奖励的移动方法还是有可能的.…
非递归按照 层序 创建二叉树,利用 队列(即可先进先出特点)存放已访问的结点元素的地址. 初始化:front=rear= -1: 每储存一个结点元素 rear+1 ,利用 rear%2==0 来使 front+1 回车表示结点输入完毕 // 结构体 struct Node { char data; Node * lchild; Node * rchild; }; /* 类 class Tree中的私有构造方法 Node * Create() 注:该方法需要 以层序遍历的方式输入 */ Node…
排序算法是数据结构中的经典算法知识点,也是笔试面试中经常考察的问题,平常学的不扎实笔试时候容易出洋相,回来恶补,尤其是碰到递归很可能被问到怎么用非递归实现... package sort; import java.util.Stack; public class SortTest { /** * 插入排序 * @param a */ public static void insertSort(int[] a){ if(a!=null){ int temp,j; for(int i=1;i<a.l…
基本问题:使用二分查找的方式,对数组内的值进行匹配,如果成功,返回其下标,否则返回 -1.请使用递归和非递归两种方法说明. 非递归代码如下: #include <stdio.h> int binsearch(int arr[], int len, int src) { ,l = , r = len-; idx = (l + r)/; while(src != arr[idx]) { if(src < arr[idx]) { r = idx - ; } else { l = idx + ;…