单链表的常见面试题1

本文探讨了单链表的一些基础操作,包括从尾到头打印链表、不遍历删除非尾节点、在非头节点前插入、实现约瑟夫环、反转链表以及找到链表的中间节点等常见面试题。这些题目要求在有限的条件下高效地处理单链表结构。

单链表的基础操作

单链表创建面试题:
1. 从尾到头打印单链表
2. 删除一个无头单链表的非尾节点(不能遍历链表)
3. 在无头单链表的一个非头节点前插入一个节点(不能遍历链表)
4. 单链表实现约瑟夫环(JosephCircle)
5. 逆置/反转单链表
6. 查找单链表的中间节点,要求只能遍历一次链表

void PrintListTail2Head(pNode head)//倒着打印
{
    if(head)
    {
        PrintListTail2Head(head->next);
        printf("%d-->",head->data);
    }
}

void DelNotTailNode(pNode head,pNode pos)//不遍历删除非尾节点
{
    pNode del;
    if(!head || !pos || !pos->next)
        return;
    del = pos->next;
    pos->data = del->data;
    pos->next = del->next;
    free(del);
}

void InsterNotErg(pNode *head,pNode pos,DateType e)//不遍历在结点前插入
{
    pNode nd;
    assert(head);
    if(!pos)
        return;
    nd = BuyNode(pos->data);
    if(nd)
    {
        pos->data = e;
        nd->next = pos->next;
        pos->next = nd;
    }
}

pNode DeathRing(pNode *head,int m)//约瑟夫环
{
    int tmp;
    pNode del,cur;
    assert(head);
    if((*head)->next == NULL)
        return(*head);

    //构环
    cur= *head;
    while(cur->next)
        cur = cur->next;
    cur->next = *head;

    cur = *head;
    while(cur->next != cur)
    {
        //报数
        tmp = m;
        while(--tmp)
        {
            cur = cur->next;
        }
        //删除
        del = cur->next;
        cur->data = del->data;
        cur->next = del->next;
        free(del);
        *head = cur;
    }
    //解环
    cur->next = NULL;
    *head = cur;
    return (*head);
}

pNode FindMidNode(pNode head)//返回中间结点
{
    pNode fast,low;
    assert(head);
    if(!head->next)
        return head;

    fast = head,low = head;
    while(fast && fast->next)
    {
        low = low->next;
        fast = fast->next->next;
    }
    return low;
}

pNode ReverseList(pNode *head)//非递归逆转
{
    pNode first,second,third;
    assert(head);
    if(!(*head)->next)
        return (*head);
    first = *head;
    second = first->next;
    third = second->next;

    first->next = NULL;
    while(third)
    {
        second->next = first;

        first = second;
        second = third;
        third = third->next;
    }
    second->next = first;
    *head = second;
    return (*head);
}

//
/************测试代码***************/
void test5()
{
    pNode list;
    InitList(&list);

    PushBack(&list,1);
    PushBack(&list,2);
    PushBack(&list,3);
    PushBack(&list,4);
    PushBack(&list,5);
    PushBack(&list,6);
    ReverseList(&list);
    PrintList(list);

}

void test4()
{
    pNode list;
    InitList(&list);

    PushBack(&list,1);
    PushBack(&list,2);
    PushBack(&list,3);
    PushBack(&list,4);
    PushBack(&list,5);
    PushBack(&list,6);

    DeathRing(&list,3);
    PrintList(list);


}

void test3()
{
    pNode list;
    pNode pos;
    InitList(&list);

    PushBack(&list,1);//1->NULL
    PushBack(&list,2);//1->2->NULL
    PushBack(&list,3);//1->2->3->NULL
    PushFront(&list,0);//0->1->2->3->NULL

    pos = Find(list,2);
    DelNotTailNode(list,pos);//0->1->3->NULL
    PrintList(list);

    pos = Find(list,3);
    InsterNotErg(&list,pos,2);//0->1->2->3->NULL
    PrintList(list);
}

void test2()
{
    pNode list;
    InitList(&list);

    PushBack(&list,1);//1->NULL
    PushBack(&list,2);//1->2->NULL
    PushBack(&list,3);//1->2->3->NULL
    PushFront(&list,0);//0->1->2->3->NULL

    PrintListTail2Head(list);

}

int main()
{
    test5();
    return 0;
}
【从高压输电线的架空地线中汲取电能】一个25千瓦受控电源从735千伏线路的架空地线中汲取电能的SimPowerSystems模型(Simulink仿真实现)内容概要:本文介绍了一个基于SimPowerSystems的Simulink仿真模型,用于模拟从735千伏高压输电线的架空地线中汲取25千瓦电能的受控电源系统。该模型聚焦于高压输电线路中架空地线的能量回收技术,通过仿真手段实现对电能采集过程的建模与控制策略验证,体现了电力系统中新型能源获取方式的技术可行性与工程应用潜力。文中还提及该资源属于一系列电力系统仿真研究的一部分,涵盖微电网、储能优化、碳流追踪、鲁棒调度等多个前沿方向,配套提供Matlab/Simulink代码及网盘资料链接,便于科研人员复现与拓展研究。; 适合人群:具备电力系统基础知识、熟悉Matlab/Simulink仿真环境,从事电力工程、能源回收或智能电网相关研究的科研人员及研究生;有一定编程与建模仿真经验的高年级本科生或工程技术人员。; 使用场景及目标:①研究高压输电线路中架空地线的能量回收机制与建模方法;②掌握基于Simulink的电力系统仿真技术,特别是受控电源与电网交互的动态特性分析;③为开展能源 harvesting、分布式供能、电力电子变换器控制等相关课题提供参考模型与技术支撑; 阅读建议:建议结合提供的仿真模型文件进行实操演练,重点理解系统结构设计、参数设置与控制逻辑实现;同时可延伸学习文档中提到的其他电力系统优化与仿真案例,以拓宽研究视野和技术积累。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值