// ListReverse.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <malloc.h>#include <iostream>using namespace std; typedef struct List{ struct List *next; int data; }*ListPtr; void Prin…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LinkedListTest { class Program { static void Main(string[] args) { LinkList<int> linkA = new LinkList<int>(); linkA.A…
最近与人瞎聊,聊到各大厂的面试题,其中有一个就是用java实现单链表反转.闲来无事,决定就这个问题进行一番尝试. 1.准备链表 准备一个由DataNode组成的单向链表,DataNode如下: public class DataNode { private int data; private DataNode next; public int getData() { return data; } public void setData(int data) { this.data = data;…
链表反转是链表相关问题最基础的知识,做完LeetCode中LinkedList后才会有这种体会,因为ACM算法中不会涉及这一部分.解决这一问题有多种方法,在面试中面试官通常也会要求写出多种.包括stack,iterative,以及recursive. (1) stack: a. 按顺序将节点push到stack中,next赋为NULL: b. 从stack中取节点依次链接. 但是开了额外的空间,来不及多解释了,看下一个吧. (2) iterative: a. 创建根节点root; b. 依次将每…