• 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • Hello World!

    Beautiful World, Wonderful Life.

  • Change the World by Program.

  • A language that doesn't affect the way you think about programming, is not worth knowing.

    Alan J. Perlis

  • Mosher's Law of Software Engineering

    Don't worry if it doesn't work right.
    If everything did, you'd be out of a job.

  • Any code of your own that you haven't looked at for six or more months might as well have been written by someone else. (Eagleson's law)
  • Stewart Brand


    Once a new technology starts rolling, if you're
    not part of the steamroller, you're part of the road.

  • Bjarne Stroustrup

    There are only two kinds of programming languages:
    those people always bitch about and those nobody uses.

  • Nine women can't make a baby in one month.

  • Within a computer,
    natural language is unnatural.

  • If you're the smartest person in the room, then

    you're in the wrong room.

  • Without requirements or design,
    programming is the art of adding bugs to an empty text file.

    --Louis Srygley

  • Fools ignore complexity.
    Pragmatists suffer it.
    Some can avoid it.
    Geniuses remove it.

C++ Programming and Object-Oriented Design

Project 11. Link List Basic System

 

Click to Download the Executable Files.       Click to Download the Sources Files. (Password Needed)

 

Name: Link List Basic System
Copyright: Seng Dewen
Author: Seng Dewen
Date: Sept. 25, 2020
Description: Link List Basic System.


菜单(Press 0 for English Menu)



Menu(按0切换到中文菜单)



1. Create List(创建顺序表)



2. Show List(显示顺序表)



3. Clear List(清空顺序表)



4.Sort List(顺序表排序)



5. Search by Location(通过位置查找元素)



6. Search by Value(通过值查找元素)



7. Insert by Location(指定位置插入元素)



8. Delete by Location(删除指定位置元素)



9. Delete by Value(删除指定值元素)



10. Delete Duplicate(删除重复元素)



11. Reverse List(置逆顺序表)



12. Partition List(划分顺序表)



13. Import from File(从文件中导入)



14. Export to File(导出到文件)



15. Max Platform(求最大平台)



16. Exit(退出程序)




 

 

 

Back to Top