惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
Recent Announcements
Recent Announcements
B
Blog
D
Docker
V
V2EX
GbyAI
GbyAI
L
LangChain Blog
博客园 - Franky
U
Unit 42
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
博客园_首页
D
DataBreaches.Net
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客

博客园 - 昊子

工作流参考模型(Workflow Reference Model) DNN default document的异常错误 如何使用GoogleCode提供的SVN Source Control服务 Norton PartitionMagic 8.0 Resizing Boot Partition 智能提示和那些值得崇拜的人 推荐一个Flex & AIR皮肤站点 SessionDiskCache 0.1版发布 Flex locale Flex Repeater 多层嵌套 从没走远 SubmitMask 1.0 发布 如何获取Footer中的子控件 DNN学习笔记 之一 配置 使用NHibernate时产生的一个错误 NHibernate官方文档 之 NHibernate指南-前言 C#事件编程 静态构造函数和静态成员变量初始化的调用时间 NHibernate和SqlImage 结束无谓的讨论吧
C#反转单向链表
昊子 · 2006-06-22 · via 博客园 - 昊子

    class Class1
    
{
        [STAThread]
        
static void Main(string[] args)
        
{
            
//初始化链表
            LineNote startnote = new LineNote( "1" );
            LineNote note 
= startnote;
            
forint i = 2; i<= 5 ;i ++ )
            
{
                note.Next 
= new LineNote( i.ToString() );
                note 
= note.Next;
            }

            note 
= startnote;
            
//输出
            while ( note!=null )
            
{
                System.Console.WriteLine( note.Note );
                note 
= note.Next;
            }

            
//开始反转
            note = startnote;
            LineNote temp 
= note;
            
while ( temp != null )
            
{
                note 
= startnote;
                
if ( temp != startnote )
                
{
                    startnote 
= temp;
                    temp 
= temp.Next;
                    startnote.Next 
= note;
                }

                
else
                
{
                    temp 
= temp.Next;
                    note.Next
= null;
                }

            }

            再次输出
            note 
= startnote;
            
while ( note!=null )
            
{
                System.Console.WriteLine( note.Note );
                note 
= note.Next;
            }

        }

    }


    
class LineNote
    
{
        
public string Note;
        
public LineNote Next;
        
public LineNote( string note)
        
{
            Note
=note;
        }

    }

很有趣的练习:)