├── README.md ├── 停车场管理 ├── Car_Management.cpp ├── Debug │ ├── Car_Management.obj │ ├── vc60.idb │ ├── vc60.pdb │ ├── 停车场管理.exe │ ├── 停车场管理.ilk │ ├── 停车场管理.pch │ └── 停车场管理.pdb ├── 停车场管理.dsp ├── 停车场管理.dsw ├── 停车场管理.ncb ├── 停车场管理.opt └── 停车场管理.plg ├── 哈夫曼编(译)码器 └── HuffmanCode │ ├── Debug │ ├── HuffmanCode.exe │ ├── HuffmanCode.ilk │ ├── HuffmanCode.obj │ ├── HuffmanCode.pch │ ├── HuffmanCode.pdb │ ├── vc60.idb │ └── vc60.pdb │ ├── HuffmanCode.cpp │ ├── HuffmanCode.dsp │ ├── HuffmanCode.dsw │ ├── HuffmanCode.ncb │ ├── HuffmanCode.opt │ └── HuffmanCode.plg ├── 拓扑排序 └── TopologicalOrder │ ├── TopologicalOrder.cpp │ ├── TopologicalOrder.dsp │ ├── TopologicalOrder.dsw │ ├── TopologicalOrder.ncb │ └── TopologicalOrder.opt ├── 校园导游咨询 └── tourGuide │ ├── Debug │ ├── tourGuide.exe │ ├── tourGuide.ilk │ ├── tourGuide.obj │ ├── tourGuide.pch │ ├── tourGuide.pdb │ ├── vc60.idb │ └── vc60.pdb │ ├── tourGuide.cpp │ ├── tourGuide.dsp │ ├── tourGuide.dsw │ ├── tourGuide.ncb │ ├── tourGuide.opt │ └── tourGuide.plg └── 约瑟夫环 ├── CycleLinklist.asp ├── CycleLinklist.h ├── Debug ├── Joseph_Circle.obj ├── vc60.idb ├── vc60.pdb ├── 约瑟夫环.exe ├── 约瑟夫环.ilk ├── 约瑟夫环.pch └── 约瑟夫环.pdb ├── Joseph_Circle.cpp ├── 约瑟夫环.dsp ├── 约瑟夫环.dsw ├── 约瑟夫环.ncb ├── 约瑟夫环.opt └── 约瑟夫环.plg /README.md: -------------------------------------------------------------------------------- 1 | # Computer-experiment-on-Data-Structure 2 | ## 杭电计院数据结构上机实验 3 | 4 | * 哈夫曼编译码器 5 | 6 | * 停车场管理 7 | 8 | * 拓扑排序 9 | 10 | * 校园导游咨询 11 | 12 | * 约瑟夫环 13 | -------------------------------------------------------------------------------- /停车场管理/Car_Management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Car_Management.cpp -------------------------------------------------------------------------------- /停车场管理/Debug/Car_Management.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/Car_Management.obj -------------------------------------------------------------------------------- /停车场管理/Debug/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/vc60.idb -------------------------------------------------------------------------------- /停车场管理/Debug/vc60.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/vc60.pdb -------------------------------------------------------------------------------- /停车场管理/Debug/停车场管理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/停车场管理.exe -------------------------------------------------------------------------------- /停车场管理/Debug/停车场管理.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/停车场管理.ilk -------------------------------------------------------------------------------- /停车场管理/Debug/停车场管理.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/停车场管理.pch -------------------------------------------------------------------------------- /停车场管理/Debug/停车场管理.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/Debug/停车场管理.pdb -------------------------------------------------------------------------------- /停车场管理/停车场管理.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/停车场管理.dsp -------------------------------------------------------------------------------- /停车场管理/停车场管理.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/停车场管理.dsw -------------------------------------------------------------------------------- /停车场管理/停车场管理.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/停车场管理.ncb -------------------------------------------------------------------------------- /停车场管理/停车场管理.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/停车场管理.opt -------------------------------------------------------------------------------- /停车场管理/停车场管理.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/停车场管理/停车场管理.plg -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.exe -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.ilk -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.obj -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.pch -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/HuffmanCode.pdb -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/vc60.idb -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/Debug/vc60.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/Debug/vc60.pdb -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/HuffmanCode.cpp -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.dsp: -------------------------------------------------------------------------------- 1 | # Microsoft Developer Studio Project File - Name="HuffmanCode" - Package Owner=<4> 2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00 3 | # ** DO NOT EDIT ** 4 | 5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103 6 | 7 | CFG=HuffmanCode - Win32 Debug 8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE, 9 | !MESSAGE use the Export Makefile command and run 10 | !MESSAGE 11 | !MESSAGE NMAKE /f "HuffmanCode.mak". 12 | !MESSAGE 13 | !MESSAGE You can specify a configuration when running NMAKE 14 | !MESSAGE by defining the macro CFG on the command line. For example: 15 | !MESSAGE 16 | !MESSAGE NMAKE /f "HuffmanCode.mak" CFG="HuffmanCode - Win32 Debug" 17 | !MESSAGE 18 | !MESSAGE Possible choices for configuration are: 19 | !MESSAGE 20 | !MESSAGE "HuffmanCode - Win32 Release" (based on "Win32 (x86) Console Application") 21 | !MESSAGE "HuffmanCode - Win32 Debug" (based on "Win32 (x86) Console Application") 22 | !MESSAGE 23 | 24 | # Begin Project 25 | # PROP AllowPerConfigDependencies 0 26 | # PROP Scc_ProjName "" 27 | # PROP Scc_LocalPath "" 28 | CPP=cl.exe 29 | RSC=rc.exe 30 | 31 | !IF "$(CFG)" == "HuffmanCode - Win32 Release" 32 | 33 | # PROP BASE Use_MFC 0 34 | # PROP BASE Use_Debug_Libraries 0 35 | # PROP BASE Output_Dir "Release" 36 | # PROP BASE Intermediate_Dir "Release" 37 | # PROP BASE Target_Dir "" 38 | # PROP Use_MFC 0 39 | # PROP Use_Debug_Libraries 0 40 | # PROP Output_Dir "Release" 41 | # PROP Intermediate_Dir "Release" 42 | # PROP Target_Dir "" 43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 45 | # ADD BASE RSC /l 0x804 /d "NDEBUG" 46 | # ADD RSC /l 0x804 /d "NDEBUG" 47 | BSC32=bscmake.exe 48 | # ADD BASE BSC32 /nologo 49 | # ADD BSC32 /nologo 50 | LINK32=link.exe 51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 53 | 54 | !ELSEIF "$(CFG)" == "HuffmanCode - Win32 Debug" 55 | 56 | # PROP BASE Use_MFC 0 57 | # PROP BASE Use_Debug_Libraries 1 58 | # PROP BASE Output_Dir "Debug" 59 | # PROP BASE Intermediate_Dir "Debug" 60 | # PROP BASE Target_Dir "" 61 | # PROP Use_MFC 0 62 | # PROP Use_Debug_Libraries 1 63 | # PROP Output_Dir "Debug" 64 | # PROP Intermediate_Dir "Debug" 65 | # PROP Target_Dir "" 66 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 67 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 68 | # ADD BASE RSC /l 0x804 /d "_DEBUG" 69 | # ADD RSC /l 0x804 /d "_DEBUG" 70 | BSC32=bscmake.exe 71 | # ADD BASE BSC32 /nologo 72 | # ADD BSC32 /nologo 73 | LINK32=link.exe 74 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 75 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 76 | 77 | !ENDIF 78 | 79 | # Begin Target 80 | 81 | # Name "HuffmanCode - Win32 Release" 82 | # Name "HuffmanCode - Win32 Debug" 83 | # Begin Group "Source Files" 84 | 85 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" 86 | # Begin Source File 87 | 88 | SOURCE=.\HuffmanCode.cpp 89 | # End Source File 90 | # End Group 91 | # Begin Group "Header Files" 92 | 93 | # PROP Default_Filter "h;hpp;hxx;hm;inl" 94 | # End Group 95 | # Begin Group "Resource Files" 96 | 97 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" 98 | # End Group 99 | # End Target 100 | # End Project 101 | -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/HuffmanCode.dsw -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/HuffmanCode.ncb -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/哈夫曼编(译)码器/HuffmanCode/HuffmanCode.opt -------------------------------------------------------------------------------- /哈夫曼编(译)码器/HuffmanCode/HuffmanCode.plg: -------------------------------------------------------------------------------- 1 | 2 | 3 |
 4 | 

Build Log

5 |

6 | --------------------Configuration: HuffmanCode - Win32 Debug-------------------- 7 |

8 |

Command Lines

9 | Creating temporary file "C:\Users\asus\AppData\Local\Temp\RSP589C.tmp" with contents 10 | [ 11 | kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/HuffmanCode.pdb" /debug /machine:I386 /out:"Debug/HuffmanCode.exe" /pdbtype:sept 12 | ".\Debug\HuffmanCode.obj" 13 | ] 14 | Creating command line "link.exe @C:\Users\asus\AppData\Local\Temp\RSP589C.tmp" 15 |

Output Window

16 | Linking... 17 | 18 | 19 | 20 |

Results

21 | HuffmanCode.exe - 0 error(s), 0 warning(s) 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /拓扑排序/TopologicalOrder/TopologicalOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/拓扑排序/TopologicalOrder/TopologicalOrder.cpp -------------------------------------------------------------------------------- /拓扑排序/TopologicalOrder/TopologicalOrder.dsp: -------------------------------------------------------------------------------- 1 | # Microsoft Developer Studio Project File - Name="TopologicalOrder" - Package Owner=<4> 2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00 3 | # ** DO NOT EDIT ** 4 | 5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103 6 | 7 | CFG=TopologicalOrder - Win32 Debug 8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE, 9 | !MESSAGE use the Export Makefile command and run 10 | !MESSAGE 11 | !MESSAGE NMAKE /f "TopologicalOrder.mak". 12 | !MESSAGE 13 | !MESSAGE You can specify a configuration when running NMAKE 14 | !MESSAGE by defining the macro CFG on the command line. For example: 15 | !MESSAGE 16 | !MESSAGE NMAKE /f "TopologicalOrder.mak" CFG="TopologicalOrder - Win32 Debug" 17 | !MESSAGE 18 | !MESSAGE Possible choices for configuration are: 19 | !MESSAGE 20 | !MESSAGE "TopologicalOrder - Win32 Release" (based on "Win32 (x86) Console Application") 21 | !MESSAGE "TopologicalOrder - Win32 Debug" (based on "Win32 (x86) Console Application") 22 | !MESSAGE 23 | 24 | # Begin Project 25 | # PROP AllowPerConfigDependencies 0 26 | # PROP Scc_ProjName "" 27 | # PROP Scc_LocalPath "" 28 | CPP=cl.exe 29 | RSC=rc.exe 30 | 31 | !IF "$(CFG)" == "TopologicalOrder - Win32 Release" 32 | 33 | # PROP BASE Use_MFC 0 34 | # PROP BASE Use_Debug_Libraries 0 35 | # PROP BASE Output_Dir "Release" 36 | # PROP BASE Intermediate_Dir "Release" 37 | # PROP BASE Target_Dir "" 38 | # PROP Use_MFC 0 39 | # PROP Use_Debug_Libraries 0 40 | # PROP Output_Dir "Release" 41 | # PROP Intermediate_Dir "Release" 42 | # PROP Target_Dir "" 43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 45 | # ADD BASE RSC /l 0x804 /d "NDEBUG" 46 | # ADD RSC /l 0x804 /d "NDEBUG" 47 | BSC32=bscmake.exe 48 | # ADD BASE BSC32 /nologo 49 | # ADD BSC32 /nologo 50 | LINK32=link.exe 51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 53 | 54 | !ELSEIF "$(CFG)" == "TopologicalOrder - Win32 Debug" 55 | 56 | # PROP BASE Use_MFC 0 57 | # PROP BASE Use_Debug_Libraries 1 58 | # PROP BASE Output_Dir "Debug" 59 | # PROP BASE Intermediate_Dir "Debug" 60 | # PROP BASE Target_Dir "" 61 | # PROP Use_MFC 0 62 | # PROP Use_Debug_Libraries 1 63 | # PROP Output_Dir "Debug" 64 | # PROP Intermediate_Dir "Debug" 65 | # PROP Target_Dir "" 66 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 67 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 68 | # ADD BASE RSC /l 0x804 /d "_DEBUG" 69 | # ADD RSC /l 0x804 /d "_DEBUG" 70 | BSC32=bscmake.exe 71 | # ADD BASE BSC32 /nologo 72 | # ADD BSC32 /nologo 73 | LINK32=link.exe 74 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 75 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 76 | 77 | !ENDIF 78 | 79 | # Begin Target 80 | 81 | # Name "TopologicalOrder - Win32 Release" 82 | # Name "TopologicalOrder - Win32 Debug" 83 | # Begin Group "Source Files" 84 | 85 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" 86 | # Begin Source File 87 | 88 | SOURCE=.\TopologicalOrder.cpp 89 | # End Source File 90 | # End Group 91 | # Begin Group "Header Files" 92 | 93 | # PROP Default_Filter "h;hpp;hxx;hm;inl" 94 | # End Group 95 | # Begin Group "Resource Files" 96 | 97 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" 98 | # End Group 99 | # End Target 100 | # End Project 101 | -------------------------------------------------------------------------------- /拓扑排序/TopologicalOrder/TopologicalOrder.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/拓扑排序/TopologicalOrder/TopologicalOrder.dsw -------------------------------------------------------------------------------- /拓扑排序/TopologicalOrder/TopologicalOrder.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/拓扑排序/TopologicalOrder/TopologicalOrder.ncb -------------------------------------------------------------------------------- /拓扑排序/TopologicalOrder/TopologicalOrder.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/拓扑排序/TopologicalOrder/TopologicalOrder.opt -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/tourGuide.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/tourGuide.exe -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/tourGuide.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/tourGuide.ilk -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/tourGuide.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/tourGuide.obj -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/tourGuide.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/tourGuide.pch -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/tourGuide.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/tourGuide.pdb -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/vc60.idb -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/Debug/vc60.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/Debug/vc60.pdb -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/tourGuide.cpp -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.dsp: -------------------------------------------------------------------------------- 1 | # Microsoft Developer Studio Project File - Name="tourGuide" - Package Owner=<4> 2 | # Microsoft Developer Studio Generated Build File, Format Version 6.00 3 | # ** DO NOT EDIT ** 4 | 5 | # TARGTYPE "Win32 (x86) Console Application" 0x0103 6 | 7 | CFG=tourGuide - Win32 Debug 8 | !MESSAGE This is not a valid makefile. To build this project using NMAKE, 9 | !MESSAGE use the Export Makefile command and run 10 | !MESSAGE 11 | !MESSAGE NMAKE /f "tourGuide.mak". 12 | !MESSAGE 13 | !MESSAGE You can specify a configuration when running NMAKE 14 | !MESSAGE by defining the macro CFG on the command line. For example: 15 | !MESSAGE 16 | !MESSAGE NMAKE /f "tourGuide.mak" CFG="tourGuide - Win32 Debug" 17 | !MESSAGE 18 | !MESSAGE Possible choices for configuration are: 19 | !MESSAGE 20 | !MESSAGE "tourGuide - Win32 Release" (based on "Win32 (x86) Console Application") 21 | !MESSAGE "tourGuide - Win32 Debug" (based on "Win32 (x86) Console Application") 22 | !MESSAGE 23 | 24 | # Begin Project 25 | # PROP AllowPerConfigDependencies 0 26 | # PROP Scc_ProjName "" 27 | # PROP Scc_LocalPath "" 28 | CPP=cl.exe 29 | RSC=rc.exe 30 | 31 | !IF "$(CFG)" == "tourGuide - Win32 Release" 32 | 33 | # PROP BASE Use_MFC 0 34 | # PROP BASE Use_Debug_Libraries 0 35 | # PROP BASE Output_Dir "Release" 36 | # PROP BASE Intermediate_Dir "Release" 37 | # PROP BASE Target_Dir "" 38 | # PROP Use_MFC 0 39 | # PROP Use_Debug_Libraries 0 40 | # PROP Output_Dir "Release" 41 | # PROP Intermediate_Dir "Release" 42 | # PROP Target_Dir "" 43 | # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 44 | # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c 45 | # ADD BASE RSC /l 0x804 /d "NDEBUG" 46 | # ADD RSC /l 0x804 /d "NDEBUG" 47 | BSC32=bscmake.exe 48 | # ADD BASE BSC32 /nologo 49 | # ADD BSC32 /nologo 50 | LINK32=link.exe 51 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 52 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 53 | 54 | !ELSEIF "$(CFG)" == "tourGuide - Win32 Debug" 55 | 56 | # PROP BASE Use_MFC 0 57 | # PROP BASE Use_Debug_Libraries 1 58 | # PROP BASE Output_Dir "Debug" 59 | # PROP BASE Intermediate_Dir "Debug" 60 | # PROP BASE Target_Dir "" 61 | # PROP Use_MFC 0 62 | # PROP Use_Debug_Libraries 1 63 | # PROP Output_Dir "Debug" 64 | # PROP Intermediate_Dir "Debug" 65 | # PROP Target_Dir "" 66 | # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 67 | # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c 68 | # ADD BASE RSC /l 0x804 /d "_DEBUG" 69 | # ADD RSC /l 0x804 /d "_DEBUG" 70 | BSC32=bscmake.exe 71 | # ADD BASE BSC32 /nologo 72 | # ADD BSC32 /nologo 73 | LINK32=link.exe 74 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 75 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 76 | 77 | !ENDIF 78 | 79 | # Begin Target 80 | 81 | # Name "tourGuide - Win32 Release" 82 | # Name "tourGuide - Win32 Debug" 83 | # Begin Group "Source Files" 84 | 85 | # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" 86 | # Begin Source File 87 | 88 | SOURCE=.\tourGuide.cpp 89 | # End Source File 90 | # End Group 91 | # Begin Group "Header Files" 92 | 93 | # PROP Default_Filter "h;hpp;hxx;hm;inl" 94 | # End Group 95 | # Begin Group "Resource Files" 96 | 97 | # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" 98 | # End Group 99 | # End Target 100 | # End Project 101 | -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/tourGuide.dsw -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/tourGuide.ncb -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/tourGuide.opt -------------------------------------------------------------------------------- /校园导游咨询/tourGuide/tourGuide.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/校园导游咨询/tourGuide/tourGuide.plg -------------------------------------------------------------------------------- /约瑟夫环/CycleLinklist.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Document Title 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /约瑟夫环/CycleLinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/CycleLinklist.h -------------------------------------------------------------------------------- /约瑟夫环/Debug/Joseph_Circle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/Joseph_Circle.obj -------------------------------------------------------------------------------- /约瑟夫环/Debug/vc60.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/vc60.idb -------------------------------------------------------------------------------- /约瑟夫环/Debug/vc60.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/vc60.pdb -------------------------------------------------------------------------------- /约瑟夫环/Debug/约瑟夫环.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/约瑟夫环.exe -------------------------------------------------------------------------------- /约瑟夫环/Debug/约瑟夫环.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/约瑟夫环.ilk -------------------------------------------------------------------------------- /约瑟夫环/Debug/约瑟夫环.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/约瑟夫环.pch -------------------------------------------------------------------------------- /约瑟夫环/Debug/约瑟夫环.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Debug/约瑟夫环.pdb -------------------------------------------------------------------------------- /约瑟夫环/Joseph_Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/Joseph_Circle.cpp -------------------------------------------------------------------------------- /约瑟夫环/约瑟夫环.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/约瑟夫环.dsp -------------------------------------------------------------------------------- /约瑟夫环/约瑟夫环.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/约瑟夫环.dsw -------------------------------------------------------------------------------- /约瑟夫环/约瑟夫环.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/约瑟夫环.ncb -------------------------------------------------------------------------------- /约瑟夫环/约瑟夫环.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/约瑟夫环.opt -------------------------------------------------------------------------------- /约瑟夫环/约瑟夫环.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjs557523/Computer-experiment-on-Data-Structure/3e742acc9a61cf0c1738b365cc02060a84479311/约瑟夫环/约瑟夫环.plg --------------------------------------------------------------------------------