├── LICENSE ├── README.md ├── edu.json └── generate_readme.py /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | ___________________ ____ ___ __ __ ___. .__ __ 3 | \_ _____/\______ \ | | \ / \ / \ ____\_ |__ _____|__|/ |_ ____ 4 | | __)_ | | \| | / ______ \ \/\/ // __ \| __ \ / ___/ \ __\/ __ \ 5 | | \ | ` \ | / /_____/ \ /\ ___/| \_\ \\___ \| || | \ ___/ 6 | /_______ //_______ /______/ \__/\ / \___ >___ /____ >__||__| \___ > 7 | \/ \/ \/ \/ \/ \/ \/ 8 | 9 | ``` 10 | 11 | ``` 12 | @Author: Jorhelp 13 | @Date: Mon Apr 18 20:20:09 2022 14 | @Desc: 国内高校网址汇总,可以用来做数据分析或数据挖掘,甚至可以批量扫描来渗透测试(遵守法律,不要做出格的事) 15 | ``` 16 | 17 | ### 广东 18 | 19 | > 总数: 179 20 | 21 | |||||| 22 | |-|-|-|-|-| 23 | |[中山大学](http://www.sysu.edu.cn)|[华南理工大学](http://www.scut.edu.cn)|[暨南大学](http://www.jnu.edu.cn)|[汕头大学](http://www.stu.edu.cn)|[深圳大学](http://www.szu.edu.cn)| 24 | |[五邑大学](http://www.wyu.edu.cn)|[广东工业大学](http://www.gdut.edu.cn)|[华南农业大学](http://www.scau.edu.cn)|[广东海洋大学](http://www.gdou.edu.cn)|[广州中医药大学](http://www.gzhtcm.edu.cn)| 25 | |[南方医科大学](http://www.fimmu.com)|[华南师范大学](http://www.scnu.edu.cn)|[广东外语外贸大学](http://www.gdufs.edu.cn)|[北京师范大学-香港浸会大学联合国际学院](http://uic.edu.hk)|[广州大学](http://www.gzhu.edu.cn)| 26 | |[广东石油化工学院](http://www.gdpa.edu.cn)|[肇庆学院](http://www.zqu.edu.cn)|[东莞理工学院](http://www.dgut.edu.cn)|[仲恺农业工程学院](http://www.zhku.edu.cn)|[广东医学院](http://www.gdmc.edu.cn)| 27 | |[广州医学院](http://www.gzhmc.edu.cn)|[广东药学院](http://www.gdpu.edu.cn)|[惠州学院](http://www.hzu.edu.cn)|[湛江师范学院](http://www.zhjnc.edu.cn)|[韩山师范学院](http://www.hstc.edu.cn)| 28 | |[嘉应学院](http://www.jyu.edu.cn)|[韶关学院](http://www.sgu.edu.cn)|[广东金融学院](http://www.gduf.edu.cn)|[广东商学院](http://www.gdcc.edu.cn)|[广东警官学院](http://www.gdppla.edu.cn)| 29 | |[广州体育学院](http://www.gipe.edu.cn)|[广州美术学院](http://www.gzarts.edu.cn)|[星海音乐学院](http://www.xhcom.edu.cn)|[广东技术师范学院](http://www.gdin.edu.cn)|[广东培正学院](http://www.peizheng.net.cn)| 30 | |[广东白云学院](http://www.bvtc.edu.cn)|[佛山科学技术学院](http://www.fosu.edu.cn)|[广东第二师范学院](http://www.gdei.edu.cn)|[广东科技学院](http://www.gdnanbo.com)|[广州航海高等专科学校](http://www.gzhmt.edu.cn)| 31 | |[肇庆医学高等专科学校](http://www.zqyz.gd.cn)|[私立华联学院](http://www.hlu.edu.cn)|[民办南华工商学院](http://www.nhic.edu.cn)|[广东食品药品职业学院](http://www.gdyzy.edu.cn)|[广州番禺职业技术学院](http://www.gzpyp.edu.cn)| 32 | |[广东新安职业技术学院](http://www.gdxa.cn)|[广东水利电力职业技术学院](http://www.gdsdxy.edu.cn)|[广东农工商职业技术学院](http://www.gdaib.edu.cn)|[广东交通职业技术学院](http://www.gdcp.cn)|[广东松山职业技术学院](http://www.gdsspt.net)| 33 | |[广东轻工职业技术学院](http://www.gdqy.edu.cn)|[广东理工职业学院](http://www.gdpi.edu.cn)|[广东司法警官职业学院](http://www.gdsfjy.cn)|[广东科贸职业学院](http://www.gdkm.edu.cn)|[广东工程职业技术学院](http://www.gpc.net.cn)| 34 | |[广东邮电职业技术学院](http://www.gupt.net)|[广东机电职业技术学院](http://www.gdmec.com)|[广东岭南职业技术学院](http://www.lingnancollege.com.cn)|[广东纺织职业技术学院](http://www.gditt.edu.cn)|[广东外语艺术职业学院](http://www.gtcfla.net)| 35 | |[广东财经职业学院](http://www.gdufe.org)|[广东行政职业学院](http://www.gdxzzy.cn)|[广东女子职业技术学院](http://www.gdfs.edu.cn)|[广东建设职业技术学院](http://www.gdcvi.net)|[广东科学技术职业学院](http://www.gdit.edu.cn)| 36 | |[广东工贸职业技术学院](http://www.gdgm.cn)|[广东亚视演艺职业学院](http://www.atvcn.com)|[广东文艺职业学院](http://www.gdla.edu.cn)|[广东体育职业技术学院](http://www.gdvcp.net)|[广东环境保护工程职业学院](http://www.gdepc.cn)| 37 | |[广东江门艺华旅游职业学院](http://www.jmyhu.com)|[广州民航职业技术学院](http://www.caac.net)|[广州工程技术职业学院](http://www.gzvtc.cn)|[广州城市职业学院](http://www.gcp.edu.cn)|[广州华南商贸职业学院](http://www.hnsmxy.com)| 38 | |[广州科技贸易职业学院](http://www.gzkmu.com)|[广州现代信息工程职业技术学院](http://www.gzmodern.cn)|[广州华立科技职业学院](http://www.hlxy.net)|[广州铁路职业技术学院](http://www.gtxy.gd.edu.cn)|[广州体育职业技术学院](http://www.gztzy.edu.cn)| 39 | |[广州工商职业技术学院](http://www.gzgs.org.cn)|[广州科技职业技术学院](http://www.gzkjxy.net)|[广州南洋理工职业学院](http://www.nyjy.cn)|[广州涉外经济职业技术学院](http://www.gziec.net)|[广州城建职业学院](http://www.gzcjc.cn)| 40 | |[广州康大职业技术学院](http://www.kdvtc-edu.cn)|[广州松田职业学院](http://www.sontanedu.cn)|[广州珠江职业技术学院](http://www.gzzjedu.cn/)|[广州华夏职业学院](http://www.gzhxtc.cn)|[广州华商职业学院](http://www.gzhsvc.com)| 41 | |[南海东软信息技术职业学院](http://nanhai.neusoft.edu.cn)|[中山火炬职业技术学院](http://www.zstp.gd.edu.cn)|[深圳信息职业技术学院](http://www.sziit.com.cn)|[珠海城市职业技术学院](http://www.zhcpt.net)|[惠州经济职业技术学院](http://www.hzcollege.com)| 42 | |[肇庆工商职业技术学院](http://www.zqtbu.com)|[肇庆科技职业技术学院](http://www.zqkjxy.com)|[广东文理职业学院](http://www.zmstu.org.cn)|[深圳职业技术学院](http://www.szpt.edu.cn)|[潮汕职业技术学院](http://www.chaoshan.cn)| 43 | |[顺德职业技术学院](http://www.sdpt.com.cn)|[佛山职业技术学院](http://www.fspt.net)|[中山职业技术学院](http://www.zspt.cn)|[汕头职业技术学院](http://stzy.stedu.net)|[汕尾职业技术学院](http://www.swvtc.cn)| 44 | |[河源职业技术学院](http://www.hycollege.net)|[阳江职业技术学院](http://www.yjcollege.net)|[罗定职业技术学院](http://www.ldpoly.com)|[揭阳职业技术学院](http://www.jyc.edu.cn)|[清远职业技术学院](http://www.qypt.com.cn)| 45 | |[江门职业技术学院](http://www.jmpt.cn)|[茂名职业技术学院](http://www.mmvtc.cn/templet/default)|[东莞职业技术学院](http://www.dgpt.edu.cn)|[珠海艺术职业学院](http://www.zhac.net)|[北京师范大学珠海分校](http://www.bnuep.com)| 46 | |[电子科技大学中山学院](http://www.zsc.edu.cn)|[华南师范大学增城学院](http://www.scnuzc.cn)|[广东工业大学华立学院](http://www.hualixy.com)|[广州大学松田学院](http://www.sontan.net)|[北京理工大学珠海学院](http://www.zhbit.com)| 47 | |[吉林大学珠海学院](http://www.jluzh.com)|[东莞理工学院城市学院](http://csxy.dgut.edu.cn)|[中山大学新华学院](http://xh.sysu.edu.cn)|[华南农业大学珠江学院](http://www.scauzhujiang.cn)|[广州大学华软软件学院](http://www.scse.com.cn)| 48 | |[广东技术师范学院天河学院](http://www.gdin-thxy.com)|[中山大学南方学院](http://nanfang.sysu.edu.cn)|[华南理工大学广州学院](http://www.gzauto.edu.cn)|[广东商学院华商学院](http://www.gdhsc.edu.cn)|[广东海洋大学寸金学院](http://www.gdcjxy.com)| 49 | |[广东外语外贸大学南国商学院](http://www.gwng.edu.cn)|[广州医科大学](https://www.gzhmu.edu.cn/)|[广东医科大学](https://www.gdmu.edu.cn/)|[广东药科大学](https://www.gdpu.edu.cn/)|[岭南师范学院](http://www.lingnan.edu.cn/)| 50 | |[广东技术师范大学](https://www.gpnu.edu.cn/)|[广东财经大学](http://www.gdufe.edu.cn/)|[广州航海学院](http://www.gzmtu.edu.cn/)|[广东东软学院](https://www.nuit.edu.cn/)|[广东财经大学华商学院](http://www.gdhsc.edu.cn/)| 51 | |[广州理工学院](http://www.thxy.edu.cn/)|[广州商学院](https://www.gcc.edu.cn/)|[广州工商学院](https://www.gzgs.edu.cn/)|[广州科技职业技术大学](https://www.gkd.edu.cn/)|[广东理工学院](http://www.gdlgxy.edu.cn/)| 52 | |[广东工商职业技术大学](http://www.gdbtu.edu.cn/)|[南方科技大学](https://www.sustech.edu.cn/)|[深圳技术大学](https://www.sztu.edu.cn/)|[北京师范大学-香港浸会大学联合国际学院](https://uic.edu.hk/cn)|[香港中文大学(深圳)](https://www.cuhk.edu.cn/)| 53 | |[深圳北理莫斯科大学](https://www.smbu.edu.cn/)|[广东以色列理工学院](https://www.gtiit.edu.cn/)|[广东南华工商职业学院](https://www.nhic.edu.cn/)|[广东职业技术学院](https://www.gdpt.edu.cn/)|[广东省外语艺术职业学院](https://www.gtcfla.edu.cn/)| 54 | |[广东南方职业学院](https://www.gdnfu.com/)|[广东青年职业学院](http://www.gdycps.edu.cn/)|[广州东华职业学院](http://www.gzdhxy.edu.cn/)|[广东创新科技职业学院](http://www.gdcxxy.edu.cn/)|[广东舞蹈戏剧职业学院](https://www.gdddc.edu.cn/)| 55 | |[惠州卫生职业技术学院](http://www.hzhsp.edu.cn/)|[广东信息工程职业学院](http://www.gdiet.edu.cn/)|[广东生态工程职业学院](http://www.gdsty.cn)|[惠州城市职业学院](https://www.hzc.edu.cn/)|[广东碧桂园职业学院](https://www.bgypt.edu.cn/)| 56 | |[广东茂名健康职业学院](http://www.gdhvc.edu.cn/)|[广东酒店管理职业技术学院](http://www.gdjdxy.edu.cn/)|[广东茂名幼儿师范专科学校](https://gdpnc.edu.cn/)|[广州卫生职业技术学院](http://www.gzws.edu.cn/)|[惠州工程职业学院](http://www.hzevc.com.cn/)| 57 | |[广东江门中医药职业学院](http://www.gdjmcmc.edu.cn)|[广东茂名农林科技职业学院](http://www.gdafc.edu.cn/)|[广东江门幼儿师范高等专科学校](http://www.jmpec.edu.cn/)|[广东财贸职业学院](http://www.gdcmxy.edu.cn/)|[湛江幼儿师范专科学校](http://www.zhjpec.edu.cn/)| 58 | |[广东广播电视大学](http://www.gdrtvu.edu.cn/)|[南华工商学院](http://www.nhic.edu.cn/)|[茂名学院](http://www.gdpa.edu.cn/)|[广东教育考试院](http://www.eeagd.edu.cn/)|| 59 | 60 | 61 | ### 海南 62 | 63 | > 总数: 25 64 | 65 | |||||| 66 | |-|-|-|-|-| 67 | |[海南大学](http://www.hainu.edu.cn)|[海南医学院](http://www.hainmc.edu.cn)|[琼州学院](http://www.qzu.edu.cn)|[海南师范大学](http://www.hainnu.edu.cn)|[海口经济学院](http://www.hkc.edu.cn)| 68 | |[琼台师范高等专科学校](http://www.qttc.edu.cn)|[三亚城市职业学院](http://www.sycsxy.cn)|[海南职业技术学院](http://www.hcvt.cn)|[三亚航空旅游职业学院](http://www.hnasatc.com)|[海南软件职业技术学院](http://www.hnspi.edu.cn)| 69 | |[海南外国语职业学院](http://www.hnflvc.com)|[海南政法职业学院](http://www.hnplc.com)|[海南经贸职业技术学院](http://www.hnjmc.com)|[海南工商职业学院](http://www.hntbc.edu.cn)|[海南科技职业学院](http://www.hnkjedu.cn)| 70 | |[三亚理工职业学院](http://www.ucsanya.com)|[海南大学三亚学院](http://www.syxyhn.com)|[海南热带海洋学院](http://www.hntou.edu.cn/)|[琼台师范学院](http://www.qtnu.edu.cn/)|[三亚学院](http://www.sanyau.edu.cn/)| 71 | |[海南科技职业大学](http://www.hnkj.edu.cn/)|[海南体育职业技术学院](http://www.hnstx.com/)|[三亚中瑞酒店管理职业学院](http://www.his.edu.cn/)|[海南健康管理职业技术学院](http://www.hainhmc.edu.cn/)|[海南卫生健康职业学院](http://www.hihvc.com/)| 72 | 73 | 74 | ### 广西 75 | 76 | > 总数: 97 77 | 78 | |||||| 79 | |-|-|-|-|-| 80 | |[广西大学](http://www.gxu.edu.cn)|[桂林电子科技大学](http://www.gliet.edu.cn)|[广西医科大学](http://www.gxmu.edu.cn)|[广西师范大学](http://www.gxnu.edu.cn)|[广西民族大学](http://www.gxun.edu.cn)| 81 | |[桂林理工大学](http://www.glite.edu.cn)|[广西工学院](http://www.gxut.edu.cn)|[广西中医学院](http://www.gxtcmu.edu.cn)|[桂林医学院](http://www.glmc.edu.cn)|[右江民族医学院](http://www.ymcn.gx.cn)| 82 | |[广西师范学院](http://www.gxtc.edu.cn)|[河池学院](http://www.hcnu.edu.cn)|[玉林师范学院](http://www.ylu.edu.cn)|[广西财经学院](http://www.gxufe.cn)|[广西艺术学院](http://www.gxai.cn)| 83 | |[百色学院](http://www.bsuc.cn)|[钦州学院](http://www.qzu.net.cn)|[贺州学院](http://www.hzu.gx.cn)|[梧州学院](http://www.gxuwz.edu.cn)|[广西民族师范学院](http://www.gxnun.net)| 84 | |[广西外国语学院](http://www.gxufl.com)|[桂林航天工业高等专科学校](http://www.glcat.edu.cn)|[柳州医学高等专科学校](http://www.lzyz.cn)|[桂林师范高等专科学校](http://www.glnc.edu.cn)|[广西幼儿师范高等专科学校](http://www.gxyesf.com)| 85 | |[柳州师范高等专科学校](http://www.gxlztc.net)|[桂林旅游高等专科学校](http://www.glit.edu.cn)|[广西警官高等专科学校](http://www.gagx.com.cn)|[广西体育高等专科学校](http://www.gxtznn.com)|[邕江大学](http://www.yjdx.net)| 86 | |[广西机电职业技术学院](http://www.gxcme.edu.cn)|[南宁职业技术学院](http://www.ncvt.net)|[柳州职业技术学院](http://www.lzzy.net)|[广西职业技术学院](http://www.gxzjy.com)|[桂林山水职业学院](http://www.guolianweb.com)| 87 | |[广西国际商务职业技术学院](http://www.gxibvc.net)|[广西生态工程职业技术学院](http://www.gxstzy.cn)|[广西农业职业技术学院](http://www.gxnyxy.com.cn)|[广西电力职业技术学院](http://www.gxdlxy.com)|[广西交通职业技术学院](http://www.gxjzy.com)| 88 | |[广西水利电力职业技术学院](http://www.gxsdxy.cn)|[广西经贸职业技术学院](http://www.gxjmzy.com)|[广西城市职业学院](http://www.gxccedu.com)|[广西工业职业技术学院](http://www.gxic.net)|[百色职业学院](http://www.bszyxy.cn)| 89 | |[广西工商职业技术学院](http://www.gxgsxy.com)|[北海职业学院](http://www.bhzyxy.net)|[北海艺术设计职业学院](http://www.sszss.com)|[广西建设职业技术学院](http://www.gxjsxy.cn)|[广西经济职业学院](http://www.gxevc.com)| 90 | |[柳州城市职业学院](http://www.lcvc.cn)|[广西演艺职业学院](http://www.gxart.cn)|[贵港职业学院](http://www.ggzy.net)|[柳州铁道职业技术学院](http://www.lztdzy.com)|[广西英华国际职业学院](http://www.tic-gx.com)| 91 | |[广西工程职业学院](http://www.gxgcedu.com)|[广西理工职业技术学院](http://www.gxlgxy.com)|[梧州职业学院](http://www.wzzyedu.com)|[广西科技职业学院](http://www.gxkjzy.com)|[广西卫生职业技术学院](http://www.gxwgy.com.cn)| 92 | |[广西现代职业技术学院](http://www.gxxd.net.cn)|[广西师范大学漓江学院](http://www.gxljcollege.cn)|[桂林电子科技大学信息科技学院](http://iit.guet.edu.cn)|[桂林理工大学博文管理学院](http://bwgl.glite.edu.cn)|[广西工学院鹿山学院](http://www.lzls.gxut.edu.cn)| 93 | |[广西师范学院师园学院](http://shiyuan.gxtc.edu.cn)|[广西民族大学相思湖学院](http://xshxy.gxun.edu.cn)|[广西大学行健文理学院](http://www.gxu.edu.cn/college/xingjian)|[广西中医学院赛恩斯新医药学院](http://www.gxzyxysy.com)|[北京航空航天大学北海学院](http://www.bhbhxy.com)| 94 | |[广西科技大学](http://www.gxust.edu.cn/)|[广西中医药大学](http://www.gxtcmu.edu.cn/)|[南宁师范大学](http://www.nnnu.edu.cn/)|[广西科技师范学院](http://www.gxstnu.edu.cn/)|[南宁学院](http://www.nnxy.cn/)| 95 | |[北部湾大学](https://www.bbgu.edu.cn/)|[桂林航天工业学院](https://www.guat.edu.cn/)|[桂林旅游学院](https://www.gltu.edu.cn/)|[广西警察学院](http://www.gxjcxy.com/)|[北海艺术设计学院](https://www.sszss.com/)| 96 | |[柳州工学院](http://www.lzhit.edu.cn/)|[南宁师范大学师园学院](http://www.gxsy.edu.cn/)|[广西中医药大学赛恩斯新医药学院](https://www.gxzyxysy.com/)|[广西城市职业大学](http://www.gxcvuedu.com/)|[广西职业师范学院](http://www.jgy.gx.cn/)| 97 | |[桂林生命与健康职业技术学院](http://www.glhic.com/)|[广西培贤国际职业学院](http://www.peixianedu.cn/)|[广西金融职业技术学院](http://www.gxjrxy.com/)|[玉柴职业技术学院](http://yczyxy-edu.cn/)|[广西蓝天航空职业学院](http://www.gxltu.edu.cn/)| 98 | |[广西安全工程职业技术学院](http://www.gxazy.com/)|[广西自然资源职业技术学院](http://www.gxnrvt.cn/)|[钦州幼儿师范高等专科学校](http://www.qzyzcle.com/)|[梧州医学高等专科学校](http://www.gxwzyz.com/)|[广西制造工程职业技术学院](http://www.gxgcedu.com)| 99 | |[广西物流职业技术学院](https://www.gxlvtc.com/)|[崇左幼儿师范高等专科学校](http://www.nnjy.net/)|||| 100 | 101 | 102 | ### 贵州 103 | 104 | > 总数: 90 105 | 106 | |||||| 107 | |-|-|-|-|-| 108 | |[贵州大学](http://www.gzu.edu.cn)|[贵州师范大学](http://www.gznu.edu.cn)|[贵阳医学院](http://www.gmc.edu.cn)|[遵义医学院](http://www.zmc.edu.cn)|[贵阳中医学院](http://www.gyctcm.edu.cn)| 109 | |[贵州师范学院](http://www.gzhnc.edu.cn)|[黔南民族师范学院](http://www.sgmtu.edu.cn)|[遵义师范学院](http://www.zync.edu.cn)|[毕节学院](http://www.gzbjc.cn)|[贵州财经学院](http://www.gzife.edu.cn)| 110 | |[贵州民族学院](http://www2.gznc.edu.cn)|[铜仁学院](http://www.gztrc.edu.cn)|[凯里学院](http://www.kluniv.cn)|[安顺学院](http://www.asu.edu.cn)|[贵阳学院](http://www.gyu.cn)| 111 | |[兴义民族师范学院](http://www.qxntc.edu.cn)|[六盘水师范学院](http://www.lpssz.edu.cn)|[黔南民族医学高等专科学校](http://www.qnmc.cn)|[遵义医药高等专科学校](http://www.zunyiyizhuan.com)|[贵州商业高等专科学校](http://www.gycc.net)| 112 | |[贵州交通职业技术学院](http://www.gzjtzy.net)|[贵州警官职业学院](http://www.gzjgxy.cn)|[贵阳护理职业学院](http://www.gynvc.edu.cn)|[贵州航天职业技术学院](http://www.gzhtzy.com)|[贵州电子信息职业技术学院](http://www.gzeic.cn)| 113 | |[贵州工业职业技术学院](http://www.gzky.edu.cn)|[六盘水职业技术学院](http://www.lpszy.cn)|[安顺职业技术学院](http://www.asotc.cn)|[贵州电力职业技术学院](http://www.csgedu.com)|[黔东南民族职业技术学院](http://www.qdnpt.com)| 114 | |[铜仁职业技术学院](http://www.trzy.cn)|[贵州亚泰职业学院](http://www.gzytvc.cn)|[黔南民族职业技术学院](http://www.qnzy.net)|[黔西南民族职业技术学院](http://www.qxnzy.net)|[贵州轻工职业技术学院](http://www.gzqy.cn)| 115 | |[遵义职业技术学院](http://www.zyzy.gov.cn)|[毕节职业技术学院](http://www.gzbjzy.edu.cn)|[贵阳职业技术学院](http://www.gyvtc.cn)|[贵州职业技术学院](http://www.gzvti.com)|[贵州大学科技学院](http://cst.gzu.edu.cn)| 116 | |[贵州大学明德学院](http://www.gzmdc.cn)|[贵州师范大学求是学院](http://qsxy.gznu.edu.cn)|[遵义医学院医学与科技学院](http://kj.zmc.edu.cn)|[贵阳中医学院时珍学院](http://sz.gytcm.com)|[贵州财经学院商务学院](http://131791.temp.cn21edu.com)| 117 | |[贵州民族学院人文科技学院](http://www.gzmyrw.cn)|[贵阳医学院神奇民族医药学院](http://sqxy.gmc.edu.cn)|[贵州医科大学](http://www.gmc.edu.cn/)|[遵义医科大学](https://www.zmu.edu.cn/)|[贵州中医药大学](http://www.gzy.edu.cn/)| 118 | |[贵州工程应用技术学院](http://www.gues.edu.cn/)|[贵州财经大学](http://www.gufe.edu.cn/)|[贵州民族大学](http://www.gzmu.edu.cn/)|[贵州商学院](http://www.gzcc.edu.cn/)|[贵州警察学院](http://www.gzjgxy.cn/)| 119 | |[贵州中医药大学时珍学院](http://www.gzyszxy.cn/)|[贵州财经大学商务学院](http://www.gzsu.edu.cn/)|[贵州民族大学人文科技学院](http://www.gzmdrw.cn/)|[遵义医科大学医学与科技学院](https://mts.zmu.edu.cn/)|[贵州医科大学神奇民族医药学院](http://www.gysqxy.cn/)| 120 | |[贵州理工学院](https://www.git.edu.cn/)|[茅台学院](http://www.mtxy.edu.cn/)|[贵州城市职业学院](http://www.gzcsxy.cn/)|[贵州盛华职业学院](http://www.forerunnercollege.com/)|[贵州工商职业学院](http://www.gzgszy.com/)| 121 | |[贵阳幼儿师范高等专科学校](http://www.gypec.edu.cn/)|[铜仁幼儿师范高等专科学校](http://www.trpec.edu.cn/)|[黔南民族幼儿师范高等专科学校](http://www.qnyzh.cn/)|[毕节医学高等专科学校](https://www.bijiemc.cn/)|[贵州建设职业技术学院](http://www.gzjszy.cn/)| 122 | |[毕节幼儿师范高等专科学校](http://www.gzbjyz.com/)|[贵州农业职业学院](http://www.gznyzyxy.cn/)|[贵州工程职业学院](http://www.gzieu.com/)|[贵州工贸职业学院](http://www.gzgmzyxy.cn/)|[贵州水利水电职业技术学院](http://www.gzsdzy.cn/)| 123 | |[贵州电子商务职业技术学院](http://www.gzdsxy.org.cn/)|[贵州应用技术职业学院](http://www.gzyyxy.com/)|[贵州电子科技职业学院](http://www.gzdzxy.cn/)|[贵州装备制造职业学院](http://www.gzzbzy.cn/)|[贵州健康职业学院](http://www.gzjkzyxy.cn/)| 124 | |[贵州食品工程职业学院](http://www.gzspzy.cn/)|[贵州经贸职业技术学院](http://www.gzjmzy.cn/)|[贵州护理职业技术学院](http://www.gznvc.com/)|[六盘水幼儿师范高等专科学校](http://lpsyz.cn/)|[毕节工业职业技术学院](http://www.bjgzy.cn/)| 125 | |[贵州机电职业技术学院](http://www.gztcme.cn/)|[贵州财经职业学院](http://www.gzcjzyxy.cn/)|[贵州民用航空职业学院](http://www.gzmhxy.cn/)|[贵州航空职业技术学院](http://www.gzhkzy.cn/)|[贵州遵义师范学院](http://www.zync.edu.cn/)| 126 | 127 | 128 | ### 云南 129 | 130 | > 总数: 93 131 | 132 | |||||| 133 | |-|-|-|-|-| 134 | |[云南大学](http://www.ynu.edu.cn)|[昆明理工大学](http://www.kmust.edu.cn)|[云南农业大学](http://www.ynau.edu.cn)|[云南师范大学](http://www.ynnu.edu.cn)|[云南财经大学](http://www.ynufe.edu.cn)| 135 | |[云南民族大学](http://www.ynni.edu.cn)|[西南林业大学](http://www.swfc.edu.cn)|[昆明医学院](http://www.kmmc.cn)|[云南中医学院](http://www.ynutcm.edu.cn)|[红河学院](http://www.uoh.edu.cn)| 136 | |[楚雄师范学院](http://www.cxtc.edu.cn/)|[玉溪师范学院](http://www.yxtc.edu.cn)|[曲靖师范学院](http://www.qjnu.edu.cn)|[云南警官学院](http://www.ynpsc.edu.cn/)|[云南艺术学院](http://www.ynart.edu.cn)| 137 | |[大理学院](http://www.dali.edu.cn)|[昆明学院](http://www.kmu.edu.cn)|[文山学院](http://www.wstc.net)|[保山学院](http://www.bsnc.cn)|[云南工商学院](http://www.yngsxy.net/Front/Home.html)| 138 | |[昆明冶金高等专科学校](http://www.kmyz.edu.cn)|[曲靖医学高等专科学校](http://www.qjyz.org)|[保山中医药高等专科学校](http://www.ynbsyz.cn)|[楚雄医药高等专科学校](http://www.cxmtc.net)|[昭通师范高等专科学校](http://www.zttc.edu.cn)| 139 | |[临沧师范高等专科学校](http://www.lcnc.cn)|[思茅师范高等专科学校](http://www.smtc.cn)|[德宏师范高等专科学校](http://www.yndhec.net)|[丽江师范高等专科学校](http://www.lj-edu.cn)|[云南能源职业技术学院](http://www.ynny.cn)| 140 | |[云南科技信息职业学院](http://www.ynkexin.cn)|[云南国土资源职业学院](http://www.yngtxy.net)|[昆明艺术职业学院](http://www.kmac.org.cn)|[西双版纳职业技术学院](http://www.xsbnzy.com/)|[云南新兴职业学院](http://ynxzy.com/)| 141 | |[云南农业职业技术学院](http://www.ynavc.com)|[云南交通职业技术学院](http://www.yncs.edu.cn/)|[云南文化艺术职业学院](http://www.ynarts.cn)|[昆明工业职业技术学院](http://www.kmvtc.net)|[云南工程职业学院](http://www.sailingedu.com)| 142 | |[云南城市建设职业学院](http://www.yncjxy.com)|[云南经济管理职业学院](http://www.ynjgx.com)|[云南机电职业技术学院](http://www.ynmec.com)|[云南林业职业技术学院](http://www.ynftc.cn)|[云南热带作物职业学院](http://www.ynry.cn)| 143 | |[云南国防工业职业技术学院](http://112.115.106.198/)|[玉溪农业职业技术学院](http://www.yxnzy.net/)|[云南司法警官职业学院](http://www.yncpu.net)|[云南体育运动职业技术学院](http://www.ynasc.com)|[云南锡业职业技术学院](http://www.ytvtc.com/HJCMS/index.htm)| 144 | |[云南经贸外事职业学院](http://www.ynjw.net)|[德宏职业学院](http://www.yndhvc.com)|[云南三鑫职业技术学院](http://www.ynsxzy.com/)|[云南商务职业学院](http://www.ynswzyxy.com/)|[云南大学滇池学院](http://dcxy.ynu.edu.cn)| 145 | |[云南师范大学商学院](http://www.ynnubs.com)|[云南大学旅游文化学院](http://www.lywhxy.com)|[昆明医学院海源学院](http://www.kyhyxy.com)|[云南艺术学院文华学院](http://whxy.ynart.edu.cn)|[云南师范大学文理学院](http://www.ysdwl.cn)| 146 | |[昆明理工大学津桥学院](http://www.oxbridge.cn)|[昆明医科大学](http://www.kmmc.cn/)|[大理大学](http://www.dali.edu.cn/)|[云南中医药大学](http://www.ynutcm.edu.cn/)|[昭通学院](http://www.ztu.edu.cn/)| 147 | |[普洱学院](http://www.peuni.cn/)|[云南经济管理学院](https://www.ynjgy.com/)|[昆明医科大学海源学院](http://www.kyhyxy.com/)|[滇西科技师范学院](http://www.wynu.edu.cn/)|[滇西应用技术大学](http://www.wyuas.edu.cn/)| 148 | |[昆明卫生职业学院](http://www.kmhpc.net/)|[云南现代职业技术学院](http://ynxdxy.cxjsxy.cn/)|[云南旅游职业学院](http://www.ynctv.cn/)|[红河卫生职业学院](http://www.hhwzy.cn/)|[云南外事外语职业学院](http://www.fafl.cn/)| 149 | |[大理农林职业技术学院](http://www.dlafc.com/)|[云南财经职业学院](http://www.ynczy.cn/)|[昆明铁道职业技术学院](http://www.kmtdzy.cn/)|[昭通卫生职业学院](http://www.ztwzy.com/)|[大理护理职业学院](http://www.dlhlzyxy.com/index.aspx)| 150 | |[云南水利水电职业学院](http://www.ynszy.net/)|[云南轻纺职业学院](http://www.ynqfzyxy.cn/)|[云南特殊教育职业学院](http://www.yntjzy.cn/)|[云南工贸职业技术学院](http://www.ynit.edu.cn/)|[云南交通运输职业学院](https://www.ynvct.com/)| 151 | |[昆明幼儿师范高等专科学校](http://www.kmyesf.cn/)|[云南医药健康职业学院](https://www.ynmhc.com/)|[云南理工职业学院](https://www.ynlg.com/)|[曲靖职业技术学院](http://www.qjzyxy.com/)|[红河职业技术学院](http://hhvtc.cn/)| 152 | |[西南林学院](http://www.swfc.edu.cn/)|[云南医学高等专科学校](http://www.mvc.yn.cn/)|[昆明艺术学院](http://www.kmac.org.cn/)||| 153 | 154 | 155 | ### 湖北 156 | 157 | > 总数: 174 158 | 159 | |||||| 160 | |-|-|-|-|-| 161 | |[武汉大学](http://www.whu.edu.cn)|[中南财经政法大学](http://www.znufe.edu.cn)|[华中科技大学](http://www.hust.edu.cn)|[武汉理工大学](http://www.whut.edu.cn)|[中国地质大学](http://www.cug.edu.cn)| 162 | |[华中农业大学](http://www.hzau.edu.cn)|[华中师范大学](http://www.ccnu.edu.cn)|[中南民族大学](http://www.scuec.edu.cn)|[湖北大学](http://www.hubu.edu.cn)|[长江大学](http://www.yangtzeu.edu.cn)| 163 | |[三峡大学](http://www.ctgu.edu.cn)|[江汉大学](http://www.jhun.edu.cn)|[武汉科技大学](http://www.wust.edu.cn)|[湖北工业大学](http://www.hbut.edu.cn)|[武汉工程大学](http://www.wit.edu.cn)| 164 | |[武汉纺织大学](http://www.wuse.edu.cn)|[湖北中医药大学](http://www.hbtcm.edu.cn)|[武汉工业学院](http://www.whpu.edu.cn)|[湖北汽车工业学院](http://www.qcxy.hb.cn)|[湖北医药学院](http://job.hbmu.edu.cn)| 165 | |[湖北工程学院](http://www.xgu.cn)|[黄冈师范学院](http://www.hgnu.cn)|[湖北师范学院](http://www.hbnu.edu.cn)|[湖北经济学院](http://www.hbue.edu.cn)|[湖北警官学院](http://www.hbpa.edu.cn)| 166 | |[武汉体育学院](http://www.wipe.edu.cn)|[湖北美术学院](http://www.hifa.edu.cn)|[武汉音乐学院](http://www.whcm.edu.cn)|[湖北民族学院](http://www.hbmy.edu.cn)|[湖北文理学院](http://www.hbuas.edu.cn)| 167 | |[湖北理工学院](http://www.hsit.edu.cn)|[湖北科技学院](http://www.enxnc.com.cn)|[荆楚理工学院](http://www.jcut.edu.cn)|[湖北第二师范学院](http://www.hubce.edu.cn)|[武汉生物工程学院](http://www.whsw.cn)| 168 | |[武汉东湖学院](http://dh.whu.edu.cn)|[武汉长江工商学院](http://www.wybu.cn)|[汉口学院](http://www.bsccnu.net.cn)|[武昌理工学院](http://www.znuni.cn)|[湖北中医药高等专科学校](http://www.hbzyy.org)| 169 | |[郧阳师范高等专科学校](http://www.yytc.net.cn)|[湖北财经高等专科学校](http://www.hbcz.com)|[武汉船舶职业技术学院](http://www.wspc.edu.cn)|[武汉商业服务学院](http://www.whcsc.edu.cn)|[黄冈职业技术学院](http://www.hbhgzy.com.cn)| 170 | |[武汉职业技术学院](http://www.wtc.edu.cn)|[武汉工贸职业学院](http://whitvc.zsxx.e21.edu.cn)|[长江职业学院](http://www.cjxy.edu.cn)|[湖北职业技术学院](http://www.hbvtc.edu.cn)|[襄樊职业技术学院](http://hbxftc.com)| 171 | |[恩施职业技术学院](http://www.eszy.edu.cn)|[鄂州职业大学](http://www.ezu.net.cn)|[十堰职业技术学院](http://www.syzy.com.cn)|[荆州理工职业学院](http://www.ssdx.net)|[武汉工业职业技术学院](http://www.wgy.cn)| 172 | |[黄冈科技职业学院](http://www.hbhgkj.com)|[湖北生态工程职业技术学院](http://www.hb-green.com)|[湖北生物科技职业学院](http://www.hbswkj.com)|[湖北财税职业学院](http://www.hbftc.org.cn)|[鄂东职业技术学院](http://www.edzy.cn)| 173 | |[随州职业技术学院](http://www.szvtc.cn)|[三峡电力职业学院](http://www.tgcep.cn)|[江汉艺术职业学院](http://www.hbjhart.com)|[湖北青年职业学院](http://www.hbqnxy.com)|[湖北城市建设职业技术学院](http://www.ucvc.net)| 174 | |[武汉民政职业学院](http://www.whmzxy.cn)|[武汉科技职业学院](http://www.whkjzy.cn)|[武汉铁路职业技术学院](http://www.wru.com.cn)|[武汉航海职业技术学院](http://www.whhhxy.com)|[湖北艺术职业学院](http://www.artschool.com.cn)| 175 | |[湖北三峡职业技术学院](http://www.tgc.edu.cn)|[武汉警官职业学院](http://www.whpa.cn)|[武汉电力职业技术学院](http://www.whetc.hb.sgcc.com.cn)|[湖北科技职业学院 ](http://www.hubstc.com.cn)|[湖北水利水电职业技术学院](http://www.hbsy.cn)| 176 | |[武汉外语外事职业学院](http://www.whflfa.com)|[武汉商贸职业学院](http://www.whicu.com)|[武汉交通职业学院](http://www.whjzy.net)|[武汉软件工程职业学院](http://www.whvcse.com)|[湖北国土资源职业学院](http://www.hbgt.com.cn)| 177 | |[武汉信息传播职业技术学院](http://www.whinfo.cn)|[长江工程职业技术学院](http://www.cj-edu.com.cn)|[武汉语言文化职业学院](http://www.wlci.com.cn)|[湖北开放职业学院](http://www.hbou.cn)|[仙桃职业学院](http://www.hbxtzy.com)| 178 | |[武汉工程职业技术学院](http://www.wgxy.net)|[荆州职业技术学院](http://www.jzit.net.cn)|[湖北轻工职业技术学院](http://www.hbliti.com)|[湖北交通职业技术学院](http://www.hbctc.edu.cn)|[咸宁职业技术学院](http://www.xnec.cn)| 179 | |[黄石职业技术学院](http://www.hspt.net.cn)|[武汉城市职业学院](http://www.whcvc.cn)|[三峡旅游职业技术学院](http://www.sxlyzy.edu.cn)|[华中科技大学武昌分校](http://www.hustwb.edu.cn)|[华中科技大学文华学院](http://www.hustwenhua.net)| 180 | |[中南财经政法大学武汉学院](http://www.whxy.net)|[武汉理工大学华夏学院](http://www.1957.cn)|[湖北大学知行学院](http://www.hudazx.cn)|[三峡大学科技学院](http://210.42.35.198)|[武汉科技大学城市学院](http://www.city.wust.edu.cn)| 181 | |[湖北工业大学工程技术学院](http://gcxy.hbut.edu.cn)|[湖北工业大学商贸学院](http://www.hugsm.e21.edu.cn)|[武汉工业学院工商学院](http://www.wpuic.net.cn)|[武汉工程大学邮电与信息工程学院](http://www.witpt.edu.cn)|[武汉科技学院外经贸学院](http://zsxx.e21.cn/sqlimg/school_html_jt/2003_05_29/article_5626.htm)| 182 | |[江汉大学文理学院](http://www.jdwlxy.cn:8080)|[湖北汽车工业学院科技学院](http://kjxy.qcxy.hb.cn)|[湖北经济学院法商学院](http://fsxy.hbue.edu.cn)|[武汉体育学院体育科技学院](http://www.kjxy.wipe.edu.cn)|[湖北师范学院文理学院](http://www.wlxy.hbnu.edu.cn)| 183 | |[湖北工程学院新技术学院](http://www.xgutc.cn)|[湖北民族学院科技学院](http://www.hbmykjxy.cn)|[郧阳医学院药护学院](http://yhxy.zsxx.e21.edu.cn)|[湖北文理学院理工学院](http://www.xfstu.net.cn/2012)|[中国地质大学江城学院](http://www.jccug.com)| 184 | |[长江大学文理学院](http://wlxy.yangtzeu.edu.cn)|[长江大学工程技术学院](http://gcxy.yangtzeu.edu.cn)|[华中师范大学武汉传媒学院](http://www.whmc.edu.cn)|[华中农业大学楚天学院](http://ctxy.hzau.edu.cn)|[武汉大学珞珈学院](http://luojia-whu.cn)| 185 | |[武汉冶金管理干部学院](http://www.jiuye114.com/edu/whyjgl/index.htm)|[中国地质大学(武汉)](http://www.cug.edu.cn/)|[武汉轻工大学](https://www.whpu.edu.cn/)|[湖北师范大学](http://www.hbnu.edu.cn/)|[湖北民族大学](https://www.hbmzu.edu.cn/)| 186 | |[汉江师范学院](http://www.hjnu.edu.cn/)|[武汉商学院](http://www.wbu.edu.cn)|[武昌首义学院](http://www.wsyu.edu.cn/)|[武汉晴川学院](http://www.qcuwh.cn/)|[武汉文理学院](http://www.jdwlxy.cn/)| 187 | |[武汉纺织大学外经贸学院](http://www.whcibe.com/)|[武昌工学院](http://www.wuit.cn/)|[武汉工商学院](http://www.wtbu.edu.cn/)|[湖北商贸学院](http://www.hbc.edu.cn/)|[湖北医药学院药护学院](http://yhgj.hbmu.edu.cn/)| 188 | |[湖北民族大学科技学院](http://www.hbmykjxy.com/)|[湖北师范大学文理学院](http://www.wlxy.hbnu.edu.cn/)|[文华学院](http://www.hustwenhua.net/)|[武汉学院](http://www.whxy.edu.cn/)|[武汉工程科技学院](http://www.wuhues.com/)| 189 | |[武汉华夏理工学院](http://www.hxut.edu.cn/)|[武汉传媒学院](http://www.whmc.edu.cn/)|[武汉设计工程学院](http://www.wids.edu.cn/)|[黄冈职业技术学院 ](http://hbhgzy.com.cn/)|[湖北工业职业技术学院](http://www.hbgyzy.edu.cn/)| 190 | |[襄阳职业技术学院](http://www.hbxytc.com/)|[武昌职业学院](http://www.wczy.cn/)|[湖北科技职业学院](http://www.hubstc.com.cn/)|[湖北工程职业学院](http://www.hbei.edu.cn/)|[天门职业学院](http://www.tmzyxy.cn/)| 191 | |[湖北体育职业学院](http://www.hbtyzy.com/)|[襄阳汽车职业技术学院](http://www.xyqczy.com/)|[湖北幼儿师范高等专科学校](http://www.hbssyys.cn/)|[湖北铁道运输职业学院](http://www.wtsx.com.cn/)|[武汉海事职业学院](http://www.whmvc.net/)| 192 | |[长江艺术工程职业学院](http://www.cjchuanxi.com/)|[荆门职业学院](https://www.jmzyxy.net.cn/)|[武汉铁路桥梁职业学院](http://www.qlxyedu.com/)|[武汉光谷职业学院](http://www.whggvc.net/)|[湖北健康职业学院](http://hbjk.chunlaiedu.com/)| 193 | |[华中科技大学同济医学院](http://www.tjmu.edu.cn/)|[武汉科技学院](http://www.wuse.edu.cn/)|[湖北中医学院](http://www.hbtcm.edu.cn/)|[郧阳医学院](http://www.yymc.edu.cn/)|[黄石理工学院](http://www.hsit.edu.cn/)| 194 | |[咸宁学院](http://www.xnc.edu.cn/)|[孝感学院](http://www.xgu.cn/)|[湖北电大](http://www.hubtvu.edu.cn/)|[郧阳师范高等专科](http://www.yytc.net.cn/)|[襄樊学院](http://www.xfu.edu.cn/)| 195 | |[沙市大学](http://www.ssdx.net/)|[武汉科技大学中南分校](http://www.znuni.cn/)|[华中师范大学汉口分校](http://www.bsccnu.net.cn/)|[湖北省经济管理干部学院](http://www.hbiem.edu.cn/)|| 196 | 197 | 198 | ### 湖南 199 | 200 | > 总数: 149 201 | 202 | |||||| 203 | |-|-|-|-|-| 204 | |[国防科学技术大学](http://www.nudt.edu.cn)|[中南大学](http://www.csu.edu.cn)|[湖南大学](http://www.hnu.cn)|[长沙理工大学](http://www.csust.edu.cn)|[湖南师范大学](http://www.hunnu.edu.cn)| 205 | |[湖南科技大学](http://www.hnust.edu.cn)|[湘潭大学](http://www.xtu.edu.cn)|[吉首大学](http://www.jsu.edu.cn)|[南华大学](http://www.usc.edu.cn)|[湖南工业大学](http://www.zhuzit.edu.cn/cn)| 206 | |[湖南农业大学](http://www.hunau.net)|[湖南中医药大学](http://www.hnctcm.com)|[中南林业科技大学](http://www.csuft.com)|[长沙学院](http://www.ccsu.cn)|[湖南城市学院](http://www.hncu.net)| 207 | |[湖南工程学院](http://www.hnie.edu.cn)|[湖南理工学院](http://www.hnist.cn)|[长沙医学院](http://www.csmu.edu.cn)|[衡阳师范学院](http://www.hynu.edu.cn)|[湘南学院](http://www.xnu.edu.cn)| 208 | |[湖南涉外经济学院](http://www.hunaneu.com)|[湖南商学院](http://www.hnuc.edu.cn)|[湖南文理学院](http://www.huas.cn)|[怀化学院](http://www.hhtc.edu.cn)|[湖南科技学院](http://www.huse.cn)| 209 | |[邵阳学院](http://www.hnsyu.net)|[湖南人文科技学院](http://www.hnrku.net.cn)|[湖南工学院](http://www.hnpu.edu.cn)|[湖南第一师范学院](http://www.hnfnc.edu.cn)|[湖南女子学院](http://www.hnnd.com.cn)| 210 | |[湖南财政经济学院](http://www.hncz.edu.cn)|[湖南警察学院](http://www.hnpolice.com)|[怀化医学高等专科学校](http://www.yizhuan.com)|[湖南中医药高等专科学校](http://www.hntcmc.net)|[邵阳医学高等专科学校](http://www.hnsyyz.cn)| 211 | |[益阳医学高等专科学校](http://www.hnyyyz.com)|[湖南科技工业职业技术学院](http://www.chnbd.com)|[湖南环境生物职业技术学院](http://www.hnebp.edu.cn)|[湖南水利水电职业技术学院](http://www.hnslsdxy.com)|[湖南安全技术职业学院](http://www.cssttc.gov.cn)| 212 | |[湖南商务职业技术学院](http://www.hnswxy.com)|[湖南交通职业技术学院](http://www.hnjtzy.com.cn)|[湖南外国语职业学院](http://www.hnflc.cn)|[湖南电子科技职业学院](http://www.8379888.com)|[湖南生物机电职业技术学院](http://www.hnbemc.com)| 213 | |[湖南铁路科技职业技术学院](http://www.hntky.com)|[湖南艺术职业学院](http://www.arthn.com)|[湖南铁道职业技术学院](http://www.hnrpc.com)|[湖南工业职业技术学院](http://www.hunangy.com)|[湖南大众传媒职业技术学院](http://www.hnmmc.cn)| 214 | |[湖南信息职业技术学院](http://www.hniu.com)|[湖南现代物流职业技术学院](http://www.56edu.com)|[湖南同德职业学院](http://www.tongde.com)|[湖南九嶷职业技术学院](http://www.4744edu.com)|[湖南软件职业学院](http://www.hnsoftedu.com)| 215 | |[湖南外贸职业学院](http://www.hnwmxy.com)|[湖南石油化工职业技术学院](http://www.hnshzy.cn)|[湖南化工职业技术学院](http://www.hnhgzy.com)|[湖南城建职业技术学院](http://www.hnucc.com)|[湖南电气职业技术学院](http://www.hnjd.net.cn)| 216 | |[湖南信息科学职业学院](http://www.hnisc.com)|[湖南科技经贸职业学院](http://www.hnkjjm.com)|[湖南理工职业技术学院](http://www.xlgy.com)|[湖南高速铁路职业技术学院](http://www.htcce.com)|[湖南工艺美术职业学院](http://www.hnmeida.com.cn)| 217 | |[湖南网络工程职业学院](http://www.hnevc.com)|[湖南司法警官职业学院](http://220.168.57.155)|[湖南机电职业技术学院](http://www.hnjdzy.net)|[湖南体育职业学院](http://tyzy.hnedu.cn)|[湖南民族职业学院](http://www.hnvc.net.cn)| 218 | |[湖南工程职业技术学院](http://www.hngcjx.com.cn)|[湖南科技职业学院](http://www.hnkjxy.net.cn)|[湖南都市职业学院](http://www.hnupc.net)|[湖南高尔夫旅游职业学院](http://www.2823333.com)|[娄底职业技术学院](http://www.ldzy.com)| 219 | |[湖南工商职业学院](http://www.hnlgxy.com)|[长沙航空职业技术学院](http://www.cavtc.cn)|[长沙民政职业技术学院](http://www.csmzxy.com)|[长沙电力职业技术学院](http://www.cseptc.hn.sgcc.com.cn)|[长沙师范学校](http://www.cssf.cn)| 220 | |[长沙环境保护职业技术学院](http://www.hbcollege.com.cn)|[长沙商贸旅游职业技术学院](http://www.hncpu.com)|[长沙南方职业学院](http://www.nfdx.net)|[长沙通信职业技术学院](http://www.csctc.net)|[长沙职业技术学院](http://www.cszyedu.cn)| 221 | |[张家界航空工业职业技术学院](http://www.zjjhy.net)|[衡阳财经工业职业技术学院](http://www.hycgy.com)|[湘西民族职业技术学院](http://www.xxmzy.com)|[永州职业技术学院](http://www.hnyzzy.com)|[株洲职业技术学院](http://www.zzptc.com)| 222 | |[潇湘职业学院](http://www.hnxxc.com)|[怀化职业技术学院](http://www.hhptc.com.cn)|[岳阳职业技术学院](http://www.yyzy.cn)|[常德职业技术学院](http://www.cdzy.cn)|[保险职业学院](http://www.bxxy.com)| 223 | |[益阳职业技术学院](http://www.yyvtc.cn)|[邵阳职业技术学院](http://www.syzyedu.com)|[郴州职业技术学院](http://www.czzy-edu.com)|[湘潭职业技术学院](http://www.xtzy.com)|[湖南师范大学树达学院](http://sdw.hunnu.edu.cn)| 224 | |[湖南商学院北津学院](http://www.bjxy.net.cn)|[中南林业科技大学涉外学院](http://new.zswxy.cn)|[湖南农业大学东方科技学院](http://www.hnaues.com)|[长沙理工大学城南学院](http://www.csust.edu.cn/pub/cnxy)|[湖南科技大学潇湘学院](http://dep.hnust.edu.cn/xxxy)| 225 | |[湖南工业大学科技学院](http://www.hnut-d.com/)|[湘潭大学兴湘学院](http://xxxy.xtu.edu.cn)|[南华大学船山学院](http://usc.edu.cn/csxy)|[湖南文理学院芙蓉学院](http://www.hnuf.cn)|[湖南理工学院南湖学院](http://61.187.92.236/nh/)| 226 | |[吉首大学张家界学院](http://zjj.jsu.edu.cn)|[湖南工程学院应用技术学院](http://www.hnieyy.cn)|[湖南中医药大学湘杏学院](http://www.hnzyxx.com)|[衡阳师范学院南岳学院](http://nyxy.hynu.cn)|[湖南工商大学](http://www.hutb.edu.cn/)| 227 | |[湖南医药学院](http://www.hnmu.com.cn/)|[湘潭理工学院](http://www.xtpu.net.cn/)|[长沙师范学院](http://www.cssf.cn/)|[湖南应用技术学院](http://www.hnyyjsxy.com/)|[湖南信息学院](http://www.hnuit.edu.cn/)| 228 | |[湖南交通工程学院](http://hnjt.edu.cn/)|[湖南软件职业学院(本科)](http://www.hnsoftedu.com/)|[湘中幼儿师范高等专科学校](http://www.xzyesf.cn/)|[株洲师范高等专科学校](https://zzyesf.net/)|[湖南税务高等专科学校](http://www.csttc.cn/)| 229 | |[湖南邮电职业技术学院](http://www.hnydxy.com/)|[湘潭医卫职业技术学院](http://www.xtzy.com/)|[湖南财经工业职业技术学院](http://www.hycgy.com/)|[湖南汽车工程职业学院](http://www.zzptc.com/)|[湖南国防工业职业技术学院](http://www.hngfxy.com/)| 230 | |[湖南三一工业职业技术学院](http://sanyedu.com/)|[长沙卫生职业学院](http://www.cswszy.com/)|[湖南食品药品职业学院](http://www.hnyzy.cn/)|[湖南有色金属职业技术学院](http://www.hnyszy.com.cn/)|[湖南吉利汽车职业技术学院](http://www.hngeelyedu.cn/)| 231 | |[湖南幼儿师范高等专科学校](http://www.hnyesf.com/)|[湘南幼儿师范高等专科学校](http://www.xnyesz.com/)|[湖南劳动人事职业学院](http://www.hnlrzy.net/)|[怀化师范高等专科学校](http://hhsfgz.com/)|[永州师范高等专科学校](http://www.hnyznc.com/)| 232 | |[衡阳幼儿师范高等专科学校](http://www.hyyesf.com/)|[长沙幼儿师范高等专科学校](http://www.csysgz.com/)|[湖南大众传媒学院](http://www.hnmmc.cn/)|[湖南女子职业大学](http://www.hnnd.com.cn/)|[长沙教育学院](http://www.csjyxy.cn/)| 233 | |[湖南对外经济贸易职业学院](http://www.hnwmxy.com/)|[湖南广播电视大学](http://www.hnopen.com/)|[湖南交通工程职业技术学院](http://www.htcce.com/)|[中南大学湘雅医学院](http://www.xymu.net/)|| 234 | 235 | 236 | ### 河南 237 | 238 | > 总数: 178 239 | 240 | |||||| 241 | |-|-|-|-|-| 242 | |[郑州大学](http://www.zzu.edu.cn)|[河南大学](http://www.henu.edu.cn)|[河南科技大学](http://www.haust.edu.cn)|[河南理工大学](http://www.hpu.edu.cn)|[河南工业大学](http://www.haut.edu.cn)| 243 | |[河南农业大学](http://www.henau.edu.cn)|[河南师范大学](http://www.henannu.edu.cn)|[河南财经政法大学](http://www.huel.edu.cn)|[华北水利水电学院](http://www.ncwu.edu.cn)|[郑州轻工业学院](http://www.zzuli.edu.cn)| 244 | |[中原工学院](http://www.zzti.edu.cn)|[安阳工学院](http://www.ayit.edu.cn)|[南阳理工学院](http://www.nyist.net)|[黄河科技学院](http://www.hhstu.edu.cn)|[郑州航空工业管理学院](http://www.zzia.edu.cn)| 245 | |[河南城建学院](http://www.hncj.edu.cn)|[河南中医学院](http://www.hactcm.edu.cn)|[新乡医学院](http://www.xxmu.edu.cn)|[信阳师范学院](http://www.xytc.edu.cn)|[南阳师范学院](http://www.nynu.edu.cn)| 246 | |[商丘师范学院](http://www.sqnc.edu.cn)|[周口师范学院](http://www.zknu.edu.cn)|[洛阳师范学院](http://www.lynu.cn)|[安阳师范学院](http://www.aynu.edu.cn)|[河南科技学院](http://www.hist.edu.cn)| 247 | |[黄淮学院](http://www.huanghuai.edu.cn)|[平顶山学院](http://www.pdsu.edu.cn)|[河南工程学院](http://www.haue.edu.cn)|[洛阳理工学院](http://www.lit.edu.cn)|[许昌学院](http://www.xctc.edu.cn)| 248 | |[新乡学院](http://www.xxu.edu.cn)|[郑州华信学院](http://www.zzhxxy.com)|[郑州科技学院](http://www.zzist.net)|[郑州师范学院](http://www.zztc.com.cn)|[河南警察学院](http://www.hngazk.edu.cn)| 249 | |[商丘工学院](http://www.sstvc.com)|[郑州升达经贸管理学院](http://www.shengda.edu.cn)|[商丘学院](http://www.hnhyedu.net)|[铁道警官高等专科学校](http://www.tdjg.com.cn)|[漯河医学高等专科学校](http://www.lhmc.edu.cn)| 250 | |[河南机电高等专科学校](http://www.hneeu.edu.cn)|[郑州电力高等专科学校](http://www.zepc.edu.cn)|[郑州牧业工程高等专科学校](http://www.zzcah.edu.cn)|[信阳农业高等专科学校](http://www.xyac.edu.cn)|[郑州澍青医学高等专科学校](http://www.shuqing.org)| 251 | |[商丘医学高等专科学校](http://www.sqyx.edu.cn)|[南阳医学高等专科学校](http://www.nymc.cn)|[焦作师范高等专科学校](http://www.jzsz.edu.cn)|[河南商业高等专科学校](http://www.habc.edu.cn)|[河南财政税务高等专科学校](http://www.hacz.edu.cn)| 252 | |[三门峡职业技术学院](http://www.smxpt.cn)|[河南职业技术学院](http://www.hnzj.ha.cn)|[郑州铁路职业技术学院](http://www.zzrvtc.com)|[黄河水利职业技术学院](http://www.yrcti.edu.cn)|[开封大学](http://www.kfu.cn)| 253 | |[中州大学](http://www.zhzhu.edu.cn)|[焦作大学](http://www.jzu.edu.cn)|[漯河职业技术学院](http://www.lhvtc.edu.cn)|[郑州职业技术学院](http://www.zzyedu.cn)|[河南司法警官职业学院](http://218.28.138.35)| 254 | |[河南工业贸易职业学院](http://www.hngm.cn)|[平顶山工业职业技术学院](http://www.pzxy.edu.cn)|[济源职业技术学院](http://www.jyvtc.com)|[河南工业职业技术学院](http://www.hnpi.cn)|[河南检察职业学院](http://www.hnjc.edu.cn)| 255 | |[郑州交通职业学院](http://www.jtxy.com)|[河南经贸职业学院](http://www.hnjmxy.cn)|[河南交通职业技术学院](http://www.hncc.net)|[郑州旅游职业学院](http://www.zztrc.edu.cn)|[信阳职业技术学院](http://www.xyvtc.cn)| 256 | |[永城职业学院](http://www.yczyxy.com)|[郑州工业安全职业学院](http://www.zazy.cn)|[嵩山少林武术职业学院](http://www.shaolinkungfu.edu.cn)|[河南质量工程职业学院](http://www.zlxy.cn)|[郑州电子信息职业技术学院](http://www.zyfb.com)| 257 | |[濮阳职业技术学院](http://www.pyvtc.cn)|[河南农业职业学院](http://www.hnac.com.cn)|[周口职业技术学院](http://www.zkvtc.edu.cn)|[鹤壁职业技术学院](http://www.hbzy.edu.cn)|[郑州经贸职业学院](http://www.zzjm.edu.cn)| 258 | |[郑州电力职业技术学院](http://www.zzdl.com)|[商丘职业技术学院](http://www.sqzy.com.cn)|[郑州信息科技职业学院](http://www.techcollege.cn)|[许昌职业技术学院](http://www.xcitc.edu.cn)|[河南建筑职业技术学院](http://www.hnjs.com.cn)| 259 | |[周口科技职业学院](http://www.zkkjxy.net)|[郑州城市职业学院](http://www.brenda.edu.cn)|[漯河食品职业学院](http://www.lsgx.com.cn)|[新乡职业技术学院](http://www.xxvtc.com)|[安阳职业技术学院](http://jsxy.anyangedu.com)| 260 | |[驻马店职业技术学院](http://www.zmdvtc.cn)|[河南化工职业学院](http://www.haict.edu.cn)|[河南艺术职业学院](http://www.hnarti.com)|[开封文化艺术职业学院](http://www.kfvcca.com)|[长垣烹饪职业技术学院](http://www.cyprxy.com)| 261 | |[焦作工贸职业学院](http://www.jzgmxy.com)|[郑州信息工程职业学院](http://www.dfxx.com.cn)|[郑州理工职业学院](http://www.zzlgxy.net)|[许昌陶瓷职业学院](http://www.xccvc.com)|[河南理工大学万方科技学院](http://202.196.225.55)| 262 | |[河南大学民生学院](http://minsheng.henu.edu.cn)|[中原工学院信息商务学院](http://www.zcib.edu.cn)|[安阳师范学院人文管理学院](http://shm.aynu.edu.cn)|[河南师范大学新联学院](http://www.xlxy.net)|[新乡医学院三全学院](http://www.sqmc.edu.cn)| 263 | |[河南科技学院新科学院](http://xink1.hist.edu.cn)|[信阳师范学院华锐学院](http://www.hrxy.edu.cn)|[河南财经政法大学成功学院](http://www.chenggong.edu.cn)|[平顶山教育学院](http://www.pdsjyxy.com/)|[第一拖拉机制造厂拖拉机学院](http://www.lyytxy.com/)| 264 | |[华北水利水电大学](https://www.ncwu.edu.cn/)|[郑州轻工业大学](http://www.zzuli.edu.cn/)|[河南牧业经济学院](http://www.hnuahe.edu.cn/)|[河南中医药大学](https://www.hactcm.edu.cn/)|[郑州工程技术学院](http://www.zzut.edu.cn)| 265 | |[信阳农林学院](http://www.xyafu.edu.cn/)|[河南工学院](https://www.hait.edu.cn/)|[河南财政金融学院](https://www.hacz.edu.cn/)|[铁道警察学院](http://www.rpc.edu.cn/)|[郑州工业应用技术学院](http://www.zzgyxy.com/)| 266 | |[郑州财经学院](http://www.zzife.edu.cn/)|[黄河交通学院](http://www.zjtu.edu.cn/)|[信阳学院](http://www.xyu.edu.cn/)|[安阳学院](http://www.ayrwedu.cn/)|[郑州工商学院](http://www.ztbu.edu.cn/)| 267 | |[郑州经贸学院](http://www.zcib.edu.cn/)|[郑州商学院](https://www.zbu.edu.cn/)|[河南科技职业大学](http://www.zkkjxy.net/)|[郑州西亚斯学院](https://www.sias.edu.cn/)|[河南工业和信息化职业学院](http://www.hciit.edu.cn/)| 268 | |[河南水利与环境职业学院](http://www.hnshxy.cn/)|[河南信息统计职业学院](http://www.hnisvc.com/)|[河南林业职业学院](http://www.hnfjc.cn/)|[河南应用技术职业学院](http://www.hati.edu.cn/)|[河南机电职业学院](http://www.hnjd.edu.cn/)| 269 | |[河南护理职业学院](http://www.hnnvc.edu.cn/)|[许昌电气职业学院](http://www.xcevc.cn/)|[信阳涉外职业技术学院](http://www.xyswxy.com/)|[鹤壁汽车工程职业学院](http://www.hbqcxy.com/)|[南阳职业学院](http://www.nyzyxy.com/)| 270 | |[郑州商贸旅游职业学院](http://www.zzvcct.com/)|[河南推拿职业学院](https://www.hltn.edu.cn/)|[洛阳职业技术学院](http://www.lypt.edu.cn/)|[郑州幼儿师范高等专科学校](http://www.zyedu.org/)|[安阳幼儿师范高等专科学校](http://www.ayys.net.cn/portal/index.htm)| 271 | |[郑州黄河护理职业学院](http://www.zyrnvc.com/)|[河南医学高等专科学校](https://www.hamc.edu.cn/)|[郑州财税金融职业学院](http://www.zzcsjr.edu.cn/)|[南阳农业职业学院](http://www.nyca.edu.cn/)|[洛阳科技职业学院](http://www.lykjxy.cn/)| 272 | |[鹤壁能源化工职业学院](http://www.hbnh.edu.cn/)|[平顶山文化艺术职业学院](http://pdswhyszyxy.com/)|[濮阳医学高等专科学校](http://www.pyyzh.cn/)|[驻马店幼儿师范高等专科学校](http://www.zyz.edu.cn/)|[三门峡社会管理职业学院](http://www.smxcsa.com/)| 273 | |[河南轻工职业学院](http://www.henlivtc.com/)|[河南测绘职业学院](http://www.hnchxy.cn/)|[信阳航空职业学院](http://www.xyhkxy.com/)|[郑州卫生健康职业学院](http://www.zzhvc.com/)|[河南物流职业学院](http://www.hnwlxy.com/)| 274 | |[河南地矿职业学院](http://www.hagmc.edu.cn/)|[郑州亚欧交通职业学院](http://www.zzyaou.edu.cn/)|[河南女子职业学院](http://henz.hnnxw.com/)|[濮阳石油化工职业技术学院](http://www.pyshxy.com/)|[南阳科技职业学院](http://www.nykjzyxydz.com/)| 275 | |[兰考三农职业学院](http://www.lksnzyxy.cn/)|[林州建筑职业技术学院](http://lzjzxy.zyhxgroup.com/)|[郑州电子商务职业学院](http://www.zzdsxy.cn/)|[郑州轨道工程职业学院](http://www.zrevc.com/index.html)|[郑州体育职业学院](http://www.zhengzhoutiyuan.com/)| 276 | |[平顶山职业技术学院](http://www.pdsjyxy.com/)|[河南财经学院](http://www.hnufe.edu.cn/)|[郑州大学升达经贸管理学院](http://www.shengda.edu.cn/)|[河南公安高等专科学校](http://www.hngazk.edu.cn/)|[河南信息工程专修学院](http://www.hniec.net/)| 277 | |[焦作师专](http://www.jzsz.cn/)|[河南教育学院](http://www.haie.edu.cn)|[河南广播电视大学](http://www.open.ha.cn/)||| 278 | 279 | 280 | ### 安徽 281 | 282 | > 总数: 140 283 | 284 | |||||| 285 | |-|-|-|-|-| 286 | |[合肥工业大学](http://www.hfut.edu.cn)|[中国科学技术大学](http://www.ustc.edu.cn/)|[安徽大学](http://www.ahu.edu.cn/)|[安徽理工大学](http://www.aust.edu.cn)|[安徽工业大学](http://www.ahut.edu.cn)| 287 | |[安徽农业大学](http://www.ahau.edu.cn)|[安徽医科大学](http://www.ahmu.edu.cn)|[安徽师范大学](http://www.ahnu.edu.cn)|[安徽财经大学](http://www.aufe.edu.cn)|[安徽工程大学](http://www.auts.edu.cn/)| 288 | |[淮北师范大学](http://www.hbcnc.edu.cn)|[安徽建筑工业学院](http://www.aiai.edu.cn)|[安徽中医学院](http://www.ahtcm.edu.cn)|[皖南医学院](http://www.wnmc.edu.cn)|[合肥师范学院](http://www.hftc.edu.cn)| 289 | |[蚌埠医学院](http://www.bbmc.edu.cn)|[阜阳师范学院](http://www.fync.edu.cn)|[安徽科技学院](http://www.ahstu.edu.cn)|[安庆师范学院](http://www.aqtc.edu.cn)|[淮南师范学院](http://www.hnnu.edu.cn)| 290 | |[安徽新华学院](http://www.axhu.cn)|[巢湖学院](http://www.chtc.edu.cn)|[宿州学院](http://www.ahsztc.edu.cn)|[黄山学院](http://www.hsu.edu.cn)|[皖西学院](http://www.wxc.edu.cn)| 291 | |[滁州学院](http://www.chzu.edu.cn)|[铜陵学院](http://www.tlc.edu.cn)|[合肥学院](http://www.hfuu.edu.cn)|[蚌埠学院](http://www.bbxy.edu.cn)|[池州学院](http://www.czu.edu.cn)| 292 | |[安徽三联学院](http://www.sanlian.net.cn)|[安徽外国语学院](http://www.aflc.com.cn)|[安徽文达信息工程学院](http://www.wendaedu.com.cn)|[马鞍山师范高等专科学校](http://www.massz.cn)|[安徽医学高等专科学校](http://www.ahyz.cn)| 293 | |[安徽中医药高等专科学校](http://www.ahzyygz.com)|[亳州师范高等专科学校](http://www.bznc.net.cn)|[桐城师范高等专科学校](http://www.tcsfgz.cn)|[安庆医药高等专科学校](http://www.aqyyz.cn)|[合肥幼儿师范高等专科学校](http://www.hfys.com.cn)| 294 | |[安徽水利水电职业技术学院](http://www.ahsdxy.ah.edu.cn)|[芜湖职业技术学院](http://www.whptu.ah.cn)|[铜陵职业技术学院](http://www.tlpt.net.cn)|[安徽警官职业学院](http://www.ahjgxy.com)|[淮南职业技术学院](http://www.hnvtc.ah.edu.cn)| 295 | |[安徽商贸职业技术学院](http://www.abc.edu.cn)|[淮南联合大学](http://www.hnuu.edu.cn)|[淮北职业技术学院](http://www.hbvtc.net)|[万博科技职业学院](http://www.ahwbedu.net)|[安徽职业技术学院](http://www.ahtu.ah.cn)| 296 | |[安徽广播影视职业技术学院](http://www.amtc.cn)|[安徽林业职业技术学院](http://www.ahlyxy.cn)|[安徽冶金科技职业学院](http://www.ahyky.com)|[池州职业技术学院](http://www.czgz.cn)|[安徽审计职业学院](http://www.ahsjxy.cn)| 297 | |[安徽新闻出版职业技术学院](http://www.ahcbxy.cn)|[安徽工业职业技术学院](http://www.ahip.cn)|[安徽邮电职业技术学院](http://www.ahptc.cn)|[安徽财贸职业学院](http://www.aftvc.com)|[安徽国际商务职业学院](http://www.ahiib.com)| 298 | |[阜阳职业技术学院](http://www.fyzy.net)|[安徽工贸职业技术学院](http://www.ahgmedu.cn)|[安徽矿业职业技术学院](http://www.anhky.com)|[合肥通用职业技术学院](http://www.hftyxy.com)|[芜湖信息技术职业学院](http://whjy.ahedu.gov.cn)| 299 | |[安徽交通职业技术学院](http://www.ahctc.com)|[安徽电子信息职业技术学院](http://www.avceit.cn)|[安徽电气工程职业技术学院](http://www.aepu.com.cn)|[合肥经济技术职业学院](http://www.hfet.com)|[安徽体育运动职业技术学院](http://www.ahty.net)| 300 | |[宿州职业技术学院](http://www.szzy.ah.cn)|[阜阳科技职业学院](http://www.fky.net.cn)|[安徽国防科技职业学院](http://www.ahgf.com.cn)|[六安职业技术学院](http://www.lvtc.edu.cn)|[安徽艺术职业学院](http://www.artah.cn)| 301 | |[安庆职业技术学院](http://www.aqvtc.cn)|[安徽工业经济职业技术学院](http://www.ahiec.net)|[合肥职业技术学院](http://www.chzy.org)|[安徽中澳科技职业学院](http://www.acac.cn)|[亳州职业技术学院](http://www.bzvtc.com)| 302 | |[安徽公安职业学院](http://www.ahgaxy.com.cn)|[安徽工商职业学院](http://www.ahbvc.cn)|[滁州职业技术学院](http://www.czc.net.cn)|[宣城职业技术学院](http://www.xcvtc.edu.cn)|[合肥财经职业学院](http://www.hffe.cn)| 303 | |[安徽机电职业技术学院](http://www.ahcme.cn)|[安徽城市管理职业学院](http://www.cmoc.cn)|[蚌埠经济技术职业学院](http://www.bjy.ah.cn)|[合肥共达职业技术学院](http://gdxy.hfut.edu.cn)|[安徽绿海商务职业学院](http://www.lhub.cn)| 304 | |[安徽涉外经济职业学院](http://www.ahaec-edu.cn)|[马鞍山职业技术学院](http://www.mastc.edu.cn)|[徽商职业学院](http://www.huishangedu.cn)|[安徽旅游职业学院](http://www.ahlyedu.cn)|[合肥滨湖职业技术学院](http://www.hfbhxy.com)| 305 | |[合肥信息技术职业学院](http://www.hfitu.cn)|[安徽现代信息工程职业学院](http://www.ahmodern.cn)|[滁州城市职业学院](http://www.czcvc.net)|[黄山职业技术学院](http://www.hszyxy.com)|[安徽汽车职业技术学院](http://www.jacedu.cn)| 306 | |[皖西卫生职业学院](http://www.wxwsxy.cn)|[安徽大学江淮学院](http://www.ahujhc.cn)|[安徽师范大学皖江学院](http://wjxy.ahnu.edu.cn)|[安徽农业大学经济技术学院](http://jjjs.ahau.edu.cn)|[安徽医科大学临床医学院](http://cc.ahmu.edu.cn)| 307 | |[安徽工业大学工商学院](http://icc.ahut.edu.cn)|[安徽财经大学商学院](http://acsxy.aufe.edu.cn)|[淮北师范大学信息学院](http://www.hbcnc.edu.cn/Site/xxxy/html)|[安徽建筑工业学院城市建设学院](http://www.aiai.edu.cn/cjxy)|[安徽工程科技学院机电学院](http://www.auts.edu.cn/jdxy)| 308 | |[阜阳师范学院信息工程学院](http://210.45.32.7/xiweb/cie)|[河海大学文天学院](http://www.hhuwtian.edu.cn)|[安徽中医药大学](http://www.ahtcm.edu.cn/)|[阜阳师范大学](http://www.fynu.edu.cn/)|[安庆师范大学](https://www.aqnu.edu.cn/)| 309 | |[安徽建筑大学](http://www.ahjzu.edu.cn/)|[亳州学院](http://www.bzuu.edu.cn/)|[蚌埠工商学院](http://acsxy.aufe.edu.cn/)|[安徽信息工程学院](https://www.aiit.edu.cn/)|[马鞍山学院](http://www.masu.edu.cn/)| 310 | |[安徽建筑大学城市建设学院](https://www.ajduc.edu.cn/)|[阜阳师范大学信息工程学院](http://cie.fynu.edu.cn/)|[皖江工学院](https://www.wjut.edu.cn/)|[安徽艺术学院](http://www.ahua.edu.cn/)|[民办万博科技职业学院](http://www.wbc.edu.cn/)| 311 | |[民办合肥经济技术职业学院](http://www.hfet.com/)|[民办合肥滨湖职业技术学院](http://www.hfbhxy.com/)|[民办合肥财经职业学院](http://www.hffe.cn/)|[安徽扬子职业技术学院](http://www.yangzixueyuan.com/)|[安徽黄梅戏艺术职业学院](http://www.ahmxx.cn/)| 312 | |[安徽粮食工程职业学院](http://www.ahly.edu.cn/)|[安徽卫生健康职业学院](http://www.ahwsjkxy.cn/)|[合肥科技职业学院](http://www.hfstu.cn/)|[皖北卫生职业学院](http://www.wbwsxy.com/)|[阜阳幼儿师范高等专科学校](http://www.fypec.edu.cn/)| 313 | |[黄山健康职业学院](https://www.hsvch.cn/)|[解放军电子工程学院](http://www.eei.edu.cn/)|[淮北煤炭师范学院](http://www.hbcnc.edu.cn/)|[巢湖职业技术学院](http://www.chzy.org/)|[安徽广播电视大学](http://www.ahtvu.ah.cn/)| 314 | 315 | 316 | ### 江西 317 | 318 | > 总数: 128 319 | 320 | |||||| 321 | |-|-|-|-|-| 322 | |[南昌大学](http://www.ncu.edu.cn)|[江西理工大学](http://www.jxust.cn/)|[华东交通大学](http://www.ecjtu.jx.cn)|[江西农业大学](http://www.jxau.edu.cn)|[江西师范大学](http://www.jxnu.edu.cn)| 323 | |[江西财经大学](http://www.jxufe.edu.cn)|[东华理工大学](http://www.ecit.edu.cn)|[南昌航空大学](http://www.nchu.edu.cn/)|[景德镇陶瓷学院](http://www.jci.edu.cn/)|[南昌工程学院](http://www.nit.edu.cn)| 324 | |[南昌理工学院](http://www.nclg.com.cn)|[江西中医学院](http://www.jxtcmi.com)|[赣南医学院](http://www.gmu.cn/)|[上饶师范学院](http://www.sru.jx.cn)|[赣南师范学院](http://www.gnnu.cn)| 325 | |[江西科技师范学院](http://www.jxstnu.cn)|[井冈山大学](http://www.jgsu.edu.cn)|[江西科技学院](http://www.jxbsu.com/)|[九江学院](http://www.jju.edu.cn)|[宜春学院](http://www.ycu.jx.cn)| 326 | |[新余学院](http://www.xyc.edu.cn)|[江西警察学院](http://www.jxga.com)|[江西服装学院](http://www.fuzhuang.com.cn)|[南昌工学院](http://www.ncgxy.com)|[九江职业大学](http://www.jjvu.jx.cn)| 327 | |[江西中医药高等专科学校](http://www.jxtcms.net)|[萍乡高等专科学校](http://www.pxc.jx.cn)|[景德镇高等专科学校](http://www.jcc.jx.cn)|[九江职业技术学院](http://www.jvtc.jx.cn)|[江西工业职业技术学院](http://www.jxgzy.cn/)| 328 | |[南昌师范高等专科学校](http://www.nctc.com.cn/)|[江西科技职业学院](http://www.jxkeda.com)|[江西先锋软件职业技术学院](http://www.aheadedu.com)|[江西经济管理职业学院](http://www.jiea.cn)|[江西应用技术职业学院](http://www.jxyyxy.com)| 329 | |[抚州职业技术学院](http://www.fzjsxy.com)|[宜春职业技术学院](http://www.ycvc.jx.cn)|[江西生物科技职业学院](http://www.jxswkj.com)|[江西外语外贸职业学院](http://www.jxcfs.com)|[江西工业贸易职业技术学院](http://www.jxgmxy.com)| 330 | |[江西渝州科技职业学院](http://www.ygcollege.com)|[江西电力职业技术学院](http://www.dlzy.jx.sgcc.com.cn/)|[江西环境工程职业学院](http://www.jxhjxy.com)|[江西航空职业技术学院](http://www.jhxy.com.cn)|[江西农业工程职业学院](http://www.jxaevc.gov.cn)| 331 | |[江西青年职业学院](http://www.jxqy.com.cn)|[江西建设职业技术学院](http://www.jxjsxy.com)|[江西工程职业学院](http://www.jxgcxy.com)|[南昌职业学院](http://www.jxdy.com)|[江西制造职业技术学院](http://www.jxmtc.com)| 332 | |[上饶职业技术学院](http://www.srzy.cn)|[江西城市职业学院](http://www.jxcsedu.com)|[赣西科技职业学院](http://www.ganxidx.com)|[江西旅游商贸职业学院](http://www.jxlsxy.com)|[江西机电职业技术学院](http://www.jxjdxy.com)| 333 | |[江西陶瓷工艺美术职业技术学院](http://www.jxgymy.com)|[江西信息应用职业技术学院](http://www.jxcia.com)|[江西交通职业技术学院](http://www.jxjtxy.com)|[江西护理职业技术学院](http://www.jxhlxy.com.cn)|[江西工业工程职业技术学院](http://www.jxgcxy.net)| 334 | |[江西现代职业技术学院](http://www.jxxdxy.com)|[鹰潭职业技术学院](http://www.jxytxy.com.cn)|[江西应用工程职业学院](http://www.jxatei.net)|[江西财经职业学院](http://www.jxvc.jx.cn)|[江西艺术职业学院](http://www.jxysedu.com)| 335 | |[江西司法警官职业学院](http://218.65.115.100/)|[江西泰豪动漫职业学院](http://www.tellhowedu.com)|[江西太阳能科技职业学院](http://www.tynxy.com/)|[江西枫林涉外经贸职业学院](http://www.fenglin.org)|[江西管理职业学院](http://www.jxglzyxy.net/)| 336 | |[江西新闻出版职业技术学院](http://www.jxcb.com)|[江西冶金职业技术学院](http://www.jxyjxy.com/)|[南昌大学科学技术学院](http://www.ndkj.com.cn)|[江西农业大学南昌商学院](http://www.ncsxy.com)|[江西师范大学科学技术学院](http://kjxy.jxnu.edu.cn)| 337 | |[华东交通大学理工学院](http://www.ecjtuit.com.cn)|[江西理工大学应用科学学院](http://www.asc.jx.cn/)|[东华理工大学长江学院](http://ytc.ecit.edu.cn)|[南昌航空大学科技学院](http://www.nckjxy.cn)|[江西中医学院科技学院](http://www.jxtcmstc.com)| 338 | |[江西财经大学现代经济管理学院](http://xjg.jxufe.cn)|[赣南师范学院科技学院](http://www.gnsyky.cn)|[景德镇陶瓷学院科技艺术学院](http://www.jci-ky.cn)|[江西科技师范学院理工学院](http://www.jxstnupi.cn/)|[南昌大学共青学院](http://www.ndgy.net)| 339 | |[景德镇陶瓷大学](http://www.jci.edu.cn/)|[江西中医药大学](https://www.jxutcm.edu.cn/)|[赣南师范大学](http://www.gnnu.cn/)|[景德镇学院](http://www.jdzu.edu.cn/)|[萍乡学院](http://www.pxc.jx.cn/)| 340 | |[江西科技师范大学](http://www.jxstnu.edu.cn/)|[江西工程学院](http://www.jxue.edu.cn/)|[江西应用科技学院](http://www.jxcsedu.com/)|[南昌职业大学](http://www.nczydx.com/)|[景德镇陶瓷大学科技艺术学院](http://www.jci-ky.cn/)| 341 | |[江西中医药大学科技学院](http://www.jxtcmstc.com/)|[赣南师范大学科技学院](http://www.gnnustc.com/)|[江西科技师范大学理工学院](http://www.jxstnupi.cn/)|[豫章师范学院](http://www.yuznu.edu.cn/)|[江西软件职业技术大学](https://www.jxuspt.com/)| 342 | |[南昌师范学院](http://www.ncnu.edu.cn/)|[上饶幼儿师范高等专科学校](http://srygz.com/)|[抚州幼儿师范高等专科学校](http://www.fzpec.cn/)|[江西医学高等专科学校](http://www.jxyxgz.cn/)|[江西卫生职业学院](http://www.jxhlxy.com.cn/)| 343 | |[江西新能源科技职业学院](http://www.tynxy.com/)|[江西传媒职业学院](http://www.jxmvc.cn/)|[江西工商职业技术学院](http://www.jxgsxy.net/)|[景德镇陶瓷职业技术学院](http://www.jcivt.com/)|[共青科技职业学院](http://www.gqkj.com.cn/)| 344 | |[赣州师范高等专科学校](http://www.ganzhsz.cn/)|[江西水利职业学院](http://www.jxslsd.com/)|[宜春幼儿师范高等专科学校](https://www.gacycu.cn/)|[吉安职业技术学院](http://www.japt.com.cn/)|[江西洪州职业学院](http://www.jxhzxy.com/)| 345 | |[南昌影视传播职业学院](http://www.ncyscb.com/)|[赣南卫生健康职业学院](http://www.gnhvc.cn/)|[萍乡卫生职业学院](http://www.pxhvc.com/)|[江西婺源茶业职业学院](http://www.jxtvc.com/)|[赣州职业技术学院](http://www.gzpt.edu.cn/)| 346 | |[南昌健康职业技术学院](http://nchs.yuznu.edu.cn/)|[九江理工职业学院](http://www.jjlgedu.com/)|[南昌大学医学院](http://www.jxmu.edu.cn/)|[江西公安专科学校](http://www.jxga.com/)|[新余高等专科学校](http://www.xygz.net/)| 347 | |[江西服装职业技术学院](http://www.fuzhuang.com.cn/)|[江西赣江职业技术学院](http://www.jxgjedu.com.cn/)|[江西大宇职业技术学院](http://www.jxdy.com/)||| 348 | 349 | 350 | ### 上海 351 | 352 | > 总数: 88 353 | 354 | |||||| 355 | |-|-|-|-|-| 356 | |[复旦大学](http://www.fudan.edu.cn)|[同济大学](http://www.tongji.edu.cn)|[上海交通大学](http://www.sjtu.edu.cn)|[华东理工大学](http://www.ecust.edu.cn)|[东华大学](http://www.dhu.edu.cn)| 357 | |[华东师范大学](http://www.ecnu.edu.cn)|[上海外国语大学](http://www.shisu.edu.cn)|[上海财经大学](http://www.shufe.edu.cn)|[上海大学](http://www.shu.edu.cn)|[上海理工大学](http://www.usst.edu.cn)| 358 | |[上海海事大学](http://www.shmtu.edu.cn)|[上海工程技术大学](http://www.sues.edu.cn)|[上海海洋大学](http://www.shfu.edu.cn)|[上海中医药大学](http://www.shutcm.com)|[上海师范大学](http://www.shnu.edu.cn)| 359 | |[华东政法大学](http://www.ecupl.edu.cn)|[上海海关学院](http://shanghai_edu.customs.gov.cn)|[上海建桥学院](http://www.gench.com.cn)|[上海政法学院](http://www.shupl.edu.cn)|[上海应用技术学院](http://www.sit.edu.cn/)| 360 | |[上海第二工业大学](http://www.shspu.edu.cn)|[上海电机学院](http://www.sdju.edu.cn)|[上海电力学院](http://www.shiep.edu.cn)|[上海对外贸易学院](http://www.shift.edu.cn)|[上海金融学院](http://www.shfc.edu.cn)| 361 | |[上海立信会计学院](http://www.lixin.edu.cn)|[上海体育学院](http://www.sus.edu.cn)|[上海音乐学院](http://www.shcmusic.edu.cn)|[上海戏剧学院](http://www.sta.edu.cn)|[上海商学院](http://www.sbs.edu.cn)| 362 | |[上海杉达学院](http://www.sandau.edu.cn)|[上海医疗器械高等专科学校](http://www.smic.edu.cn)|[上海出版印刷高等专科学校](http://www.sppc.edu.cn)|[上海医药高等专科学校](http://www.sihs.cn)|[上海旅游高等专科学校](http://sit.shnu.edu.cn)| 363 | |[上海公安高等专科学校](http://www.shpc.edu.cn)|[上海电影艺术职业学院](http://www.shfilmart.com)|[上海新侨职业技术学院](http://www.xq.sh.cn/)|[上海东海职业技术学院](http://www.esu.edu.cn)|[上海电子信息职业技术学院](http://www.stiei.edu.cn/)| 364 | |[上海工艺美术职业学院](http://www.gymy.cn)|[上海立达职业技术学院](http://www.lidapoly.com)|[上海济光职业技术学院](http://www.shjgxy.com)|[上海交通职业技术学院](http://www.scp.edu.cn)|[上海工商外国语职业学院](http://www.sicfl.edu.cn)| 365 | |[上海海事职业技术学院](http://www.sma.edu.cn)|[上海科学技术职业学院](http://www.scst.sh.cn)|[上海城市管理职业技术学院](http://www.shumc.edu.cn/)|[上海震旦职业学院](http://www.aurora-college.cn)|[上海中华职业技术学院](http://www.zhonghuacollege.com/)| 366 | |[上海行健职业学院](http://www.shxj.cn)|[上海工会管理职业学院](http://www.shghxyedu.net)|[上海托普信息技术职业学院](http://www.etop.com.cn)|[上海邦德职业技术学院](http://www.shbangde.com)|[上海农林职业技术学院](http://www.shafc.edu.cn)| 367 | |[上海中侨职业技术学院](http://www.shzq.edu.cn)|[上海思博职业技术学院](http://www.shsipo.com)|[上海欧华职业技术学院](http://www.shouhua.net.cn)|[上海体育职业学院](http://www.ssi.edu.cn/)|[上海民远职业技术学院](http://www.min-yuan.com)| 368 | |[上海建峰职业技术学院](http://www.shjf.com)|[上海健康职业技术学院](http://www.shzgyxy.cn)|[上海师范大学天华学院](http://www.sthu.cn/)|[上海外国语大学贤达经济人文学院](http://www.xdsisu.edu.cn/)|[复旦大学上海视觉艺术学院](http://www.siva.edu.cn)| 369 | |[同济大学同科学院](http://tk.tongji.edu.cn)|[上海电力大学](https://www.shiep.edu.cn/)|[上海应用技术大学](https://www.sit.edu.cn/)|[上海健康医学院](https://www.sumhs.edu.cn/)|[上海对外经贸大学](http://www.suibe.edu.cn/)| 370 | |[上海公安学院](https://www.shpc.edu.cn/)|[上海立信会计金融学院](https://www.lixin.edu.cn/)|[上海立达学院](http://www.lidapoly.edu.cn/)|[上海兴伟学院](https://www.xingwei.edu.cn/)|[上海中侨职业技术大学](http://www.shzq.edu.cn/)| 371 | |[上海视觉艺术学院](https://www.siva.edu.cn/)|[上海科技大学](https://www.shanghaitech.edu.cn/)|[上海纽约大学](https://shanghai.nyu.edu/cn)|[上海工商职业技术学院](http://www.sicp.edu.cn/)|[上海城建职业学院](https://www.succ.edu.cn/)| 372 | |[上海民航职业技术学院](http://www.shcac.edu.cn/)|[第二军医大学](http://www.smmu.edu.cn/)|[上海交通大学医学院](http://www.shsmu.edu.cn/)|[复旦大学医学院](http://www.shmu.edu.cn/)|[上海交通大学成人教育学院](http://www.sjtuce.net/)| 373 | |[上海邦德学院](http://www.shbangde.com/)|[上海电视大学](http://www.shtvu.edu.cn/)|[上海经济管理干部学院](http://www.semc.edu.cn/)||| 374 | 375 | 376 | ### 江苏 377 | 378 | > 总数: 205 379 | 380 | |||||| 381 | |-|-|-|-|-| 382 | |[南京大学](http://www.nju.edu.cn)|[东南大学](http://www.seu.edu.cn)|[中国矿业大学](http://www.cumt.edu.cn)|[河海大学](http://www.hhu.edu.cn)|[江南大学](http://www.sytu.edu.cn)| 383 | |[南京农业大学](http://www.njau.edu.cn)|[中国药科大学](http://www.cpu.edu.cn)|[南京理工大学](http://www.njust.edu.cn)|[南京航空航天大学](http://www.nuaa.edu.cn)|[苏州大学](http://www.suda.edu.cn)| 384 | |[扬州大学](http://www.yzu.edu.cn)|[江苏大学](http://www.ujs.edu.cn)|[南京邮电大学](http://www.njupt.edu.cn)|[江苏科技大学](http://www.just.edu.cn)|[南京工业大学](http://www.njut.edu.cn)| 385 | |[南京林业大学](http://www.njfu.edu.cn)|[南京医科大学](http://www.njmu.edu.cn)|[南京中医药大学](http://www.njutcm.edu.cn)|[南京师范大学](http://www.njnu.edu.cn)|[江苏师范大学](http://www.xznu.edu.cn)| 386 | |[南京财经大学](http://www.njue.edu.cn)|[南通大学](http://www.ntu.edu.cn)|[常州大学](http://www.jpu.edu.cn)|[西交利物浦大学](http://www.xjtlu.edu.cn)|[南京信息工程大学](http://www.nuist.edu.cn)| 387 | |[淮阴工学院](http://www.hyit.edu.cn)|[徐州工程学院](http://www.xzit.edu.cn)|[淮海工学院](http://www.hhit.edu.cn)|[常州工学院](http://www.czu.cn)|[盐城工学院](http://www.ycit.cn)| 388 | |[金陵科技学院](http://www.jit.edu.cn)|[南京工程学院](http://www.njit.edu.cn)|[徐州医学院](http://www.xzmc.edu.cn)|[江苏技术师范学院](http://www.jstu.edu.cn)|[淮阴师范学院](http://www.hytc.edu.cn)| 389 | |[南京晓庄学院](http://www.njxzc.edu.cn)|[盐城师范学院](http://www.yctc.edu.cn)|[苏州科技学院](http://www.usts.edu.cn)|[南京审计学院](http://www.nau.edu.cn)|[江苏警官学院](http://www.jspi.cn)| 390 | |[南京体育学院](http://www.nipes.cn)|[南京艺术学院](http://www.njarti.edu.cn)|[常熟理工学院](http://www.cslg.cn)|[三江学院](http://www.sju.js.cn)|[南京森林警察学院](http://www.forestpolice.net)| 391 | |[无锡太湖学院](http://www.thxy.org)|[连云港师范高等专科学校](http://www.lygsf.net.cn)|[泰州师范高等专科学校](http://www.tzsz.net)|[镇江市高等专科学校](http://www.zjc.edu.cn)|[徐州幼儿师范高等专科学校](http://www.xzyz.edu.cn)| 392 | |[江苏畜牧兽医职业技术学院](http://www.jsahvc.edu.cn)|[南通纺织职业技术学院](http://www.nttec.edu.cn)|[南京工业职业技术学院](http://www.niit.edu.cn)|[无锡商业职业技术学院](http://www.jscpu.com)|[泰州职业技术学院](http://www.tzpc.edu.cn)| 393 | |[南通航运职业技术学院](http://www.ntsc.edu.cn)|[江苏建筑职业技术学院](http://www.xzcat.edu.cn)|[无锡职业技术学院](http://www.wxit.edu.cn)|[明达职业技术学院](http://www.mdut.cn)|[沙洲职业工学院](http://www.szit.edu.cn)| 394 | |[苏州工艺美术职业技术学院](http://www.sgmart.com)|[扬州市职业大学](http://www.yzpc.edu.cn)|[苏州市职业大学](http://www.jssvc.edu.cn/)|[连云港职业技术学院](http://www.lygtc.net.cn)|[江苏城市职业学院](http://www.jscvc.cn)| 395 | |[苏州高博软件技术职业学院](http://www.gist.edu.cn)|[江阴职业技术学院](http://www.jypc.org)|[钟山职业技术学院](http://www.zscollege.com)|[淮安信息职业技术学院](http://www.hcit.edu.cn)|[南京交通职业技术学院](http://www.njci.cn)| 396 | |[江苏建康职业学院](http://www.jssmu.edu.cn)|[宿迁学院](http://www.sqc.edu.cn)|[苏州信息职业技术学院](http://www.szitu.cn)|[江苏食品职业技术学院](http://www.jsfsc.edu.cn)|[太湖创意职业技术学院](http://www.thcyzy.org)| 397 | |[江苏海事职业技术学院](http://www.jmi.edu.cn)|[江苏经贸职业技术学院](http://www.jseti.edu.cn)|[南京信息职业技术学院](http://www.njcit.cn)|[常州工程职业技术学院](http://www.czie.net)|[常州轻工职业技术学院](http://www.czili.edu.cn)| 398 | |[徐州工业职业技术学院](http://www.xzcit.cn)|[江苏农林职业技术学院](http://www.jsafc.net)|[江苏信息职业技术学院](http://www.jsit.edu.cn)|[苏州港大思培科技职业学院](http://www.hkuspace.edu.cn)|[昆山登云科技职业学院](http://www.dyc.edu.cn)| 399 | |[南京旅游职业学院](http://www.jltu.net)|[苏州工业园区职业技术学院](http://www.sipivt.edu.cn)|[苏州经贸职业技术学院](http://www.szjm.edu.cn)|[常州机电职业技术学院](http://www.czmec.cn)|[江海职业技术学院](http://www.jhu.cn)| 400 | |[南京化工职业技术学院](http://www.njcc.edu.cn)|[盐城卫生职业技术学院](http://www.jsycmc.com)|[常州信息职业技术学院](http://www.ccit.js.cn)|[正德职业技术学院](http://www.zdxy.cn)|[炎黄职业技术学院](http://www.yhust.edu.cn/)| 401 | |[九州职业技术学院](http://www.jznu.com.cn)|[无锡城市职业技术学院](http://www.wxcsxy.com)|[无锡工艺职业技术学院](http://www.wxgyxy.cn)|[健雄职业技术学院](http://www.wjxvtc.cn)|[江苏财经职业技术学院](http://www.jscjxy.cn)| 402 | |[盐城纺织职业技术学院](http://www.yctei.cn)|[常州纺织服装职业技术学院](http://www.cztgi.edu.cn)|[南京铁道职业技术学院](http://www.njrts.edu.cn)|[苏州工业职业技术学院](http://www.siit.cn)|[金山职业技术学院](http://www.jinshan-cn.com)| 403 | |[紫琅职业技术学院](http://www.zlvc.edu.cn)|[金肯职业技术学院](http://www.jku.edu.cn)|[江苏联合职业技术学院](http://www.juti.cn)|[江南影视艺术职业学院](http://www.jnys.cn)|[建东职业技术学院](http://www.czjdu.com)| 404 | |[苏州托普信息职业技术学院](http://www.szetop.com)|[南通职业大学](http://www.ntvc.edu.cn)|[应天职业技术学院](http://www.ytc.edu.cn)|[无锡科技职业学院](http://www.wxstc.cn)|[南通农业职业技术学院](http://www.ntac.edu.cn)| 405 | |[扬州环境资源职业技术学院](http://www.yzerc.org)|[扬州工业职业技术学院](http://www.ypi.edu.cn/)|[南京机电职业技术学院](http://www.njcmee.net)|[苏州农业职业技术学院](http://www.szai.com)|[南京视觉艺术职业学院](http://www.niva.cn)| 406 | |[苏州卫生职业技术学院](http://www.szmtc.com)|[南京特殊教育职业技术学院](http://www.njty.edu.cn)|[无锡南洋职业技术学院](http://www.wsoc.com.cn)|[硅湖职业技术学院](http://www.usl.edu.cn)|[苏州工业园区服务外包职业学院](http://www.siso.edu.cn)| 407 | |[宿迁泽达职业技术学院](http://www.zdct.cn)|[东南大学成贤学院](http://cxxy.seu.edu.cn)|[中国矿业大学徐海学院](http://xhc.cumt.edu.cn)|[南京大学金陵学院](http://jlxy.nju.edu.cn)|[南京理工大学紫金学院](http://zj.njust.edu.cn)| 408 | |[南京航空航天大学金城学院](http://jc.nuaa.edu.cn)|[中国传媒大学南广学院](http://www.cucn.edu.cn)|[南京理工大学泰州科技学院](http://www.njusttz.edu.cn)|[南京师范大学泰州学院](http://www.njnutz.com)|[南京工业大学浦江学院](http://pjxy.njut.edu.cn)| 409 | |[南京师范大学中北学院](http://zbzs.njnu.edu.cn)|[南京医科大学康达学院](http://kdc.njmu.edu.cn)|[南京中医药大学翰林学院](http://hlxy.njutcm.edu.cn)|[南京信息工程大学滨江学院](http://www.bjxy.cn)|[苏州大学文正学院](http://58.210.239.206)| 410 | |[苏州大学应用技术学院](http://tec.suda.edu.cn)|[苏州科技学院天平学院](http://tpxy.usts.edu.cn)|[江苏大学京江学院](http://jjxy.ujs.edu.cn)|[扬州大学广陵学院](http://glxy.yzu.edu.cn)|[江苏师范大学科文学院](http://kwxy.xznu.edu.cn)| 411 | |[南京邮电大学通达学院](http://www.jseea.cn/schoolinformation/nanjingyoudiantongdaxueyuan.html)|[南京财经大学红山学院](http://hs.njue.edu.cn)|[江苏科技大学南徐学院](http://202.195.192.66)|[常州大学怀德学院](http://hdc.jpu.edu.cn)|[南通大学杏林学院](http://xlxy.ntu.edu.cn)| 412 | |[南京审计学院金审学院](http://jsxy.nau.edu.cn)|[江苏省省级机关管理干部学院](http://www.jsggy.net/)|[徐州医科大学](http://www.xzhmu.edu.cn/)|[苏州科技大学](http://www.usts.edu.cn/)|[南京工业职业技术大学](http://www.niit.edu.cn/)| 413 | |[南京审计大学](https://www.nau.edu.cn/)|[江苏理工学院](http://www.jstu.edu.cn/)|[江苏海洋大学](https://www.jou.edu.cn/)|[南京特殊教育师范学院](https://www.njts.edu.cn/)|[南通理工学院](https://www.ntit.edu.cn/)| 414 | |[泰州学院](https://www.tzu.edu.cn/)|[南京传媒学院](http://www.cucn.edu.cn/)|[苏州科技大学天平学院](http://tpxy.usts.edu.cn/)|[江苏科技大学苏州理工学院](http://szlg.just.edu.cn/)|[南京审计大学金审学院](http://www.naujsc.edu.cn/)| 415 | |[江苏第二师范学院](http://www.jssnu.edu.cn/)|[昆山杜克大学](https://dukekunshan.edu.cn/)|[盐城幼儿师范高等专科学校](http://www.yyz.edu.cn/)|[苏州幼儿师范高等专科学校](http://www.szys.net/)|[江苏工程职业技术学院](http://jcet.edu.cn/)| 416 | |[苏州职业大学](https://www.jssvc.edu.cn/)|[江苏医药职业学院](http://www.jsycmc.com/)|[南通科技职业学院](http://www.ntst.edu.cn/)|[江苏航运职业技术学院](http://www.ntsc.edu.cn/)|[江苏电子信息职业学院](http://www.hcit.edu.cn/")| 417 | |[江苏农牧科技职业学院](http://www.jsahvc.edu.cn/)|[南京科技职业学院](http://www.njpi.edu.cn/)|[常州工业职业技术学院](http://www.czili.edu.cn/)|[江苏食品药品职业技术学院](http://www.jsfpc.edu.cn/)|[宿迁职业技术学院](http://www.sqzyxy.com/)| 418 | |[苏州健雄职业技术学院](http://www.wjxvtc.cn/)|[盐城工业职业技术学院](http://www.yctei.cn/)|[苏州百年职业学院](http://www.scc.edu.cn/)|[南京城市职业学院](https://www.ncc.edu.cn/)|[江苏卫生健康职业学院](http://www.jssmu.edu.cn/)| 419 | |[江苏财会职业学院](http://www.jscfa.edu.cn/)|[江苏城乡建设职业学院](http://www.js-cj.com/)|[江苏航空职业技术学院](http://www.jatc.edu.cn/)|[江苏安全技术职业学院](http://www.jscst.edu.cn/)|[江苏旅游职业学院](http://www.jstc.edu.cn/)| 420 | |[徐州生物工程职业技术学院](http://www.xzsw.net/)|[江苏商贸职业学院](http://www.ntgx.edu.cn/)|[南通师范高等专科学校](http://www.ntnc.edu.cn/)|[扬州中瑞酒店职业学院](http://www.yhiedu.cn/)|[江苏护理职业学院](http://www.jscn.edu.cn/)| 421 | |[江苏工业学院](http://www.jpu.edu.cn/)|[徐州师范大学](http://www.xznu.edu.cn/)|[南京森林公安高等专科学校](http://www.forestpolice.net/)|[南京人口管理干部学院](http://www.ncppm.edu.cn/)|[江苏教育学院](http://www.jsie.edu.cn/)| 422 | |[南京电大](http://www.njtvu.edu.cn/)|[江南大学太湖学院](http://www.thxy.org/)|[南京高等职业技术学校](http://www.bau-hss-nj.com/)|[扬州职业大学](http://www.yzpc.edu.cn/)|[江苏南方科技学院](http://www.nfkjxy.com/)| 423 | 424 | 425 | ### 浙江 426 | 427 | > 总数: 131 428 | 429 | |||||| 430 | |-|-|-|-|-| 431 | |[浙江大学](http://www.zju.edu.cn)|[宁波大学](http://www.nbu.edu.cn)|[浙江工业大学](http://www.zjut.edu.cn)|[杭州电子科技大学](http://www.hdu.edu.cn)|[浙江理工大学](http://www.zist.edu.cn)| 432 | |[浙江中医药大学](http://www.zjtcm.net)|[浙江师范大学](http://www.zjnu.edu.cn)|[杭州师范大学](http://www.hznu.edu.cn/www/)|[浙江工商大学](http://www.hzic.edu.cn)|[宁波诺丁汉大学](http://www.nottingham.edu.cn)| 433 | |[温州大学](http://www.wzu.edu.cn)|[浙江农林大学](http://www.zjfc.edu.cn)|[宁波大红鹰学院](http://www.dhyedu.com)|[浙江越秀外国语学院](http://www.yxc.cn)|[嘉兴学院](http://www.zjxu.edu.cn)| 434 | |[中国计量学院](http://www.cjlu.edu.cn)|[浙江科技学院](http://www.zust.edu.cn)|[宁波工程学院](http://www.nbut.cn)|[浙江海洋学院](http://www.zjou.net.cn)|[温州医学院](http://www.wzmc.net)| 435 | |[湖州师范学院](http://www.hutc.zj.cn)|[绍兴文理学院](http://www.zscas.edu.cn)|[台州学院](http://www.tzc.edu.cn)|[浙江传媒学院](http://www.zjicm.edu.cn)|[浙江财经学院](http://www.zufe.edu.cn)| 436 | |[浙江警察学院](http://www.zjjcxy.cn)|[中国美术学院](http://www.caa.edu.cn)|[浙江树人学院](http://www.zjsru.cn)|[浙江万里学院](http://www.zjwu.net)|[公安海警学院](http://www.hjgz.net)| 437 | |[丽水学院](http://www.lsxy.com)|[衢州学院](http://www.qzu.zj.cn/)|[浙江外国语学院](http://www.zisu.edu.cn/2010homepage/)|[浙江水利水电专科学校](http://www.zjwchc.com)|[浙江医学高等专科学校](http://www.zjmc.net.cn)| 438 | |[浙江医药高等专科学校](http://www.zjpc.net.cn)|[金华职业技术学院](http://www.jhc.cn/)|[宁波职业技术学院](http://www.nbptweb.net)|[温州职业技术学院](http://www.wzvtc.cn)|[浙江交通职业技术学院](http://www.zjvtit.edu.cn)| 439 | |[浙江金融职业学院](http://www.zjfc.com.cn)|[杭州科技职业技术学院](http://www.hzaspt.edu.cn)|[湖州职业技术学院](http://www.hzvtc.net)|[浙江旅游职业学院](http://www.tczj.net)|[台州职业技术学院](http://www.tzvtc.com)| 440 | |[浙江工贸职业技术学院](http://www.zjitc.net)|[浙江工业职业技术学院](http://www.zjipc.com)|[杭州万向职业技术学院](http://www.wxpoly.cn)|[浙江工商职业技术学院](http://www.zjbti.net.cn)|[浙江经济职业技术学院](http://www.zjtie.edu.cn)| 441 | |[浙江机电职业技术学院](http://www.zime.edu.cn)|[衢州职业技术学院](http://www.qzct.net)|[浙江东方职业技术学院](http://www.zjdfc.com)|[义乌工商职业技术学院](http://www.ywu.cn)|[嘉兴南洋职业技术学院](http://www.jxnyc.net)| 442 | |[宁波城市职业技术学院](http://www.nbcccj.com/)|[浙江体育职业技术学院](http://www.zjcs.net.cn)|[浙江电力职业技术学院](http://www.zjevtc.cn)|[浙江同济科技职业学院](http://www.zjtongji.edu.cn)|[浙江邮电职业技术学院](http://www.zptc.cn)| 443 | |[台州科技职业学院](http://www.tzvcst.net)|[温州科技职业学院](http://www.wzvcst.cn)|[绍兴职业技术学院](http://www.sxvtc.com)|[浙江长征职业技术学院](http://www.zjczxy.cn)|[浙江汽车职业技术学院](http://www.geelyedu.com)| 444 | |[浙江纺织服装职业技术学院](http://www.zjff.net)|[浙江国际海运职业技术学院](http://www.zimc.cn)|[浙江警官职业学院](http://www.zjjy.com.cn)|[浙江建设职业技术学院](http://www.zjjy.net)|[杭州职业技术学院](http://www.hzvtc.edu.cn)| 445 | |[宁波天一职业技术学院](http://www.nbchs.net/)|[浙江商业职业技术学院](http://www.zjvcc.edu.cn)|[浙江育英职业技术学院](http://www.zjyyc.com)|[嘉兴职业技术学院](http://www.jxvtc.net)|[浙江横店影视职业学院](http://www.zjhyxy.net)| 446 | |[浙江广厦建设职业技术学院](http://www.guangshaxy.com)|[丽水职业技术学院](http://www.lszjy.com)|[浙江经贸职业技术学院](http://www.zjiet.edu.cn)|[浙江艺术职业学院](http://www.zj-art.com)|[浙江大学城市学院](http://www.zucc.edu.cn)| 447 | |[浙江大学宁波理工学院](http://www.nit.net.cn)|[浙江工业大学之江学院](http://www.zjc.zjut.edu.cn)|[浙江师范大学行知学院](http://xz.zjnu.net.cn)|[宁波大学科学技术学院](http://www.ndkjxy.net.cn)|[杭州电子科技大学信息工程学院](http://infoedu.hdu.edu.cn)| 448 | |[浙江理工大学科技与艺术学院](http://www.ky.zstu.edu.cn)|[浙江海洋学院东海科学技术学院](http://dk.zjou.edu.cn)|[浙江农林大学天目学院](http://tmxy.zjfc.edu.cn)|[温州医学院仁济学院](http://www.wzmc.net/renji)|[浙江中医药大学滨江学院](http://bjxy.zjtcm.net)| 449 | |[杭州师范大学钱江学院](http://qjxy.hznu.edu.cn/)|[湖州师范学院求真学院](http://qzxy.hutc.zj.cn)|[绍兴文理学院元培学院](http://www.ypcol.com)|[温州大学瓯江学院 ](http://www.ojc.zj.cn)|[浙江工商大学杭州商学院](http://hsy.zjgsu.edu.cn)| 450 | |[中国计量学院现代科技学院](http://xdkj.cjlu.edu.cn/)|[浙江财经学院东方学院](http://www.zufedfc.edu.cn/)|[嘉兴学院南湖学院](http://nhxy.zjxu.edu.cn)|[温州大学城市学院](http://www.wucc.cn)|[同济大学浙江学院](http://www.tjzj.edu.cn)| 451 | |[上海财经大学浙江学院](http://www.shufe-zj.edu.cn/)|[浙江海洋大学](http://www.zjou.edu.cn/)|[温州医科大学](http://www.wmu.edu.cn/)|[中国计量大学](http://www.cjlu.edu.cn/)|[浙江水利水电学院](https://www.zjweu.edu.cn/)| 452 | |[浙江财经大学](https://www.zufe.edu.cn/)|[宁波财经学院](https://www.nbufe.edu.cn/)|[浙大城市学院](http://www.zucc.edu.cn/)|[浙大宁波理工学院](http://www.nit.net.cn/)|[杭州医学院](http://www.hmc.edu.cn/)| 453 | |[浙江广厦建设职业技术大学](http://www.guangshaxy.com/)|[浙江海洋大学东海科学技术学院](http://dk.zjou.edu.cn/)|[浙江农林大学暨阳学院](http://www.zjyc.edu.cn/)|[温州医科大学仁济学院](http://rjxy.wmu.edu.cn/)|[温州大学瓯江学院](https://www.ojc.zj.cn/)| 454 | |[中国计量大学现代科技学院](https://xdkj.cjlu.edu.cn/)|[浙江财经大学东方学院](https://www.zufedfc.edu.cn/)|[温州商学院](http://zs.wzbc.edu.cn/)|[浙江音乐学院](http://www.zjcm.edu.cn/)|[西湖大学](https://www.westlake.edu.cn/)| 455 | |[温州肯恩大学](https://wku.edu.cn/)|[宁波卫生职业技术学院](http://www.nchs.net.cn/)|[浙江农业商贸职业学院](https://www.zjabc.edu.cn/)|[浙江特殊教育职业学院](http://www.zcse.edu.cn/)|[浙江安防职业技术学院](http://www.zjist.cn/)| 456 | |[浙江宇翔职业技术学院](http://yxwy.org/)|[浙江舟山群岛新区旅游与健康职业学院](http://www.zsthc.com/)|[宁波幼儿师范高等专科学校](https://www.nbei.net/)|[浙江林学院](http://www.zjfc.edu.cn/)|[浙江树人大学](http://www.zjsru.cn/)| 457 | |[浙江教育学院](http://www.zjei.net/)||||| 458 | 459 | 460 | ### 山东 461 | 462 | > 总数: 186 463 | 464 | |||||| 465 | |-|-|-|-|-| 466 | |[山东大学](http://www.sdu.edu.cn)|[中国海洋大学](http://www.ouc.edu.cn)|[中国石油大学(华东)](http://www.upc.edu.cn)|[青岛大学](http://www.qdu.edu.cn)|[山东科技大学](http://www.sdust.edu.cn)| 467 | |[山东理工大学](http://www.sdut.edu.cn)|[聊城大学](http://www.lcu.edu.cn)|[烟台大学](http://www.ytu.edu.cn)|[青岛科技大学](http://www.qust.edu.cn)|[青岛理工大学](http://www.qtech.edu.cn)| 468 | |[济南大学](http://www.ujn.edu.cn)|[山东建筑大学](http://www.sdai.edu.cn)|[山东农业大学](http://www.sdau.edu.cn)|[山东中医药大学](http://www.sdutcm.edu.cn)|[山东师范大学](http://www.sdnu.edu.cn)| 469 | |[曲阜师范大学](http://www.qfnu.edu.cn)|[鲁东大学](http://www.ldu.edu.cn)|[青岛农业大学](http://www.qau.edu.cn)|[山东轻工业学院](http://www.sdili.edu.cn)|[山东交通学院](http://www.sdjtu.edu.cn)| 470 | |[潍坊医学院](http://www.wfmc.edu.cn)|[泰山医学院](http://www.tsmc.edu.cn)|[滨州医学院](http://www.bzmc.edu.cn)|[济宁医学院](http://www.jnmc.edu.cn)|[临沂大学](http://www.lyu.edu.cn)| 471 | |[山东政法学院](http://www.sdupsl.edu.cn)|[潍坊学院](http://www.wfu.edu.cn)|[德州学院](http://www.dzu.edu.cn)|[山东财经大学(筹)](http://www.sdie.edu.cn)|[青岛工学院](http://www.oucqdc.edu.cn)| 472 | |[山东工商学院](http://www.sdibt.edu.cn)|[山东警察学院](http://www.sdpc.edu.cn)|[山东体育学院](http://www.sdpei.edu.cn)|[山东艺术学院](http://www.sdca.edu.cn)|[山东工艺美术学院](http://www.sdada.edu.cn)| 473 | |[菏泽学院](http://www.hezeu.edu.cn)|[青岛滨海学院](http://www.binhaicollege.com)|[烟台南山学院](http://www.nanshan.edu.cn)|[滨州学院](http://www.bzu.edu.cn)|[枣庄学院](http://www.uzz.edu.cn)| 474 | |[泰山学院](http://www.tsu.edu.cn)|[济宁学院](http://www.jnxy.edu.cn)|[山东万杰医学院](http://www.wjmu.net)|[潍坊科技学院](http://www.wfkjxy.com.cn)|[山东英才学院](http://www.ycxy.com)| 475 | |[齐鲁师范学院](http://www.qlnu.edu.cn)|[山东青年政治学院](http://www.sdyu.edu.cn)|[山东女子学院](http://www.sdwu.edu.cn)|[山东协和学院](http://www.sdxiehe.com)|[青岛黄海学院](http://www.huanghaicollege.com)| 476 | |[山东中医药高等专科学校](http://www.stcmchina.com)|[淄博师范高等专科学校](http://www.zbnc.edu.cn)|[山东水利职业学院](http://www.sdwrp.com)|[山东电力高等专科学校](http://www.sepc.edu.cn)|[菏泽医学专科学校](http://www.hzmc.edu.cn)| 477 | |[山东医学高等专科学校](http://www.sdmc.net.cn)|[济南幼儿师范高等专科学校](http://www.sdjnys.com)|[山东畜牧兽医职业学院](http://www.sdmyxy.cn)|[山东商业职业技术学院](http://www.sict.edu.cn)|[莱芜职业技术学院](http://www.lwvc.net)| 478 | |[青岛职业技术学院](http://www.qtc.edu.cn)|[济宁职业技术学院](http://www.jnzjxy.com.cn)|[山东劳动职业技术学院](http://www.sdlvtc.cn)|[曲阜远东职业技术学院](http://www.fareast-edu.net)|[威海职业学院](http://www.weihaicollege.com)| 479 | |[日照职业技术学院](http://www.rzpt.cn/)|[聊城职业技术学院](http://www.lctvu.sd.cn)|[山东力明科技职业学院](http://www.6789.com.cn)|[山东服装职业学院](http://www.svict.com)|[东营职业学院](http://www.dyxy.net)| 480 | |[潍坊职业学院](http://www.sdwfvc.com)|[烟台职业学院](http://www.ytvc.com.cn)|[山东科技职业学院](http://www.sdzy.com.cn)|[滨州职业学院](http://www.edubzvc.com.cn)|[山东职业学院](http://www.sdp.edu.cn)| 481 | |[德州科技职业学院](http://www.dzkjqd.edu.cn/)|[青岛求实职业技术学院](http://www.qdqs.com)|[泰山职业技术学院](http://www.mtotc.com.cn)|[山东药品食品职业学院](http://www.sddfvc.cn)|[济南职业学院](http://www.jnvc.edu.cn)| 482 | |[山东城市建设职业学院](http://www.sdcjxy.com)|[烟台汽车工程职业学院](http://www.ytqcvc.cn)|[山东司法警官职业学院](http://www.sdsfjy.com)|[山东商务职业学院](http://www.sdbi.com.cn)|[山东丝绸纺织职业学院](http://www.silkedu.com)| 483 | |[山东旅游职业学院](http://www.sdts.net.cn)|[山东外事翻译职业学院](http://www.wsfy.cn)|[山东外国语职业学院](http://www.sdflc.com)|[山东华宇职业技术学院](http://www.sdhyxy.com)|[青岛恒星职业技术学院](http://www.cestar.com)| 484 | |[山东电子职业技术学院](http://www.sdcet.cn)|[山东化工职业学院](http://www.qledu.net)|[山东工业职业学院](http://www.sdivc.net.cn)|[山东铝业职业学院](http://www.shlzhj.net)|[青岛港湾职业技术学院](http://www.qdgw.com)| 485 | |[青岛飞洋职业技术学院](http://www.feiyangcollege.com)|[山东交通职业学院](http://www.sdjtzyxy.com)|[山东信息职业技术学院](http://www.sdcit.cn)|[山东外贸职业学院](http://www.sdftcollege.com.cn)|[青岛酒店管理职业技术学院](http://www.qchm.edu.cn)| 486 | |[山东现代职业学院](http://www.uxd.com.cn)|[济南工程职业技术学院](http://www.jngcxy.com/)|[淄博职业学院](http://www.zbvc.cn)|[山东经贸职业学院](http://www.sdecu.com)|[山东文化产业职业学院](http://www.sdcivc.com)| 487 | |[山东圣翰财贸职业学院](http://www.suu.com.cn)|[山东杏林科技职业学院](http://www.sdxlxy.com)|[潍坊工商职业学院](http://www.wfgsxy.com)|[山东理工职业学院](http://www.sdlgzy.com)|[德州职业技术学院](http://www.dzvtc.cn)| 488 | |[山东凯文科技职业学院](http://www.sdkevin.cn)|[枣庄科技职业学院](http://www.zzkjxy.com)|[山东大王职业学院](http://www.dwcollege.net)|[烟台工程职业技术学院](http://www.ytetc.edu.cn/)|[山东胜利职业学院](http://www.sdslvc.com)| 489 | |[菏泽家政职业学院](http://www.hzjzxy.com)|[枣庄职业学院](http://www.sdzzvc.cn)|[临沂职业学院](http://www.lyzyxy.com)|[山东传媒职业学院](http://www.sdcmc.net)|[青岛远洋船员职业学院](http://www.coscoqmc.com.cn)| 490 | |[中国石油大学胜利学院](http://www.pusc.cn)|[烟台大学文经学院](http://wenjing.ytu.edu.cn)|[青岛理工大学琴岛学院](http://www.qdc.cn)|[山东科技大学泰山科技学院](http://tskjxy.sdust.edu.cn)|[山东经济学院燕山学院](http://yanshan.sdufe.edu.cn/)| 491 | |[青岛农业大学海都学院](http://www.hdxy.org)|[曲阜师范大学杏坛学院](http://xt.qfnu.edu.cn)|[山东财政学院东方学院](http://www.sdor.cn)|[山东师范大学历山学院](http://www.lsxy.sdnu.edu.cn)|[聊城大学东昌学院](http://www.lcudc.cn)| 492 | |[济南大学泉城学院](http://jdqy.ujn.edu.cn)|[山东省聊城教育学院](http://www.lcjyxy.com/)|[中国石油大学(华东)](http://www.upc.edu.cn/)|[齐鲁工业大学](http://www.qlu.edu.cn/)|[山东第一医科大学](http://www.sdfmu.edu.cn/)| 493 | |[山东财经大学](https://www.sdufe.edu.cn/)|[齐鲁医药学院](http://www.qlmu.edu.cn/)|[青岛恒星科技学院](http://www.hx.cn/)|[山东现代学院](http://www.sdxd.edu.cn/)|[山东工程职业技术大学](http://www.suet.edu.cn/)| 494 | |[潍坊理工学院](http://www.wfit.edu.cn/)|[山东财经大学燕山学院](https://ys.sdufe.edu.cn/)|[山东外国语职业技术大学](http://www.swut.cn/)|[山东华宇工学院](http://www.huayu.edu.cn/)|[山东外事职业大学](http://www.sdws.edu.cn/)| 495 | |[齐鲁理工学院](https://www.qlit.edu.cn/)|[山东财经大学东方学院](http://www.sdor.cn/)|[北京电影学院现代创意媒体学院](http://www.bfamcmc.edu.cn/)|[山东管理学院](http://www.sdmu.edu.cn/)|[山东农业工程学院](https://www.sdaeu.edu.cn/)| 496 | |[东营科技职业学院](http://www.dycollege.net/)|[山东轻工职业学院](http://www.sdlivc.com/)|[济南护理职业学院](http://www.sdjnwx.com/)|[泰山护理职业学院](http://www.tshlxy.com/)|[山东海事职业学院](http://www.sdm.net.cn/)| 497 | |[潍坊护理职业学院](http://www.wfhlxy.com/)|[潍坊工程职业学院](http://www.wfec.cn/)|[菏泽职业学院](http://www.hezevc.edu.cn/)|[山东艺术设计职业学院](http://www.sysy.com.cn/)|[威海海洋职业学院](http://www.whovc.edu.cn/)| 498 | |[山东特殊教育职业学院](http://www.sdse.cn/)|[烟台黄金职业学院](http://www.ytgc.edu.cn/)|[日照航海工程职业学院](http://www.rzmevc.com/)|[青岛工程职业学院](https://www.qdec.edu.cn/)|[青岛幼儿师范高等专科学校](https://www.qdpecedu.cn/)| 499 | |[烟台幼儿师范高等专科学校](https://www.ytysgzzsw.com/)|[烟台文化旅游职业学院](http://www.yvcct.edu.cn/)|[临沂科技职业学院](https://www.lyvust.cn/)|[青岛航空科技职业学院](http://www.qdhkxy.com/)|[潍坊环境工程职业学院](http://www.wfhgzxy.com/)| 500 | |[山东工会管理干部学院](http://www.sdtuc.com.cn/)|[临沂师范学院](http://www.lytu.edu.cn/)|[山东经济学院](http://www.sdie.edu.cn/)|[山东财政学院](http://www.sdfi.edu.cn/)|[山东教育学院](http://www.sde.edu.cn/)| 501 | |[山东大学威海分校](http://www.wh.sdu.edu.cn/)|[青岛远洋船员学院](http://www.coscoqmc.com.cn/)|[青岛黄海职业学院](http://www.huanghaicollege.com/)|[青岛酒店管理学院](http://www.qchm.edu.cn/)|[哈尔滨工业大学(威海)](http://www.whhit.com/)| 502 | |[青岛新港报关学院](http://www.xgbaoguan.com.cn/)|[济南铁道职业技术学院](http://www.jnrp.cn/)|[山东技师学院](http://www.sdjsxy.com/)|[山东经济管理干部学院](http://www.sdai.gov.cn/)|[山东联合大学](http://www.suu.com.cn/)| 503 | |[山东协和职业技术学院](http://www.sdxiehe.com/home/)||||| 504 | 505 | 506 | ### 福建 507 | 508 | > 总数: 113 509 | 510 | |||||| 511 | |-|-|-|-|-| 512 | |[厦门大学](http://www.xmu.edu.cn)|[华侨大学](http://www.hqu.edu.cn)|[福建农林大学](http://www.fafu.edu.cn)|[集美大学](http://www.jmu.edu.cn)|[福州大学](http://www.fzu.edu.cn)| 513 | |[仰恩大学](http://www.yeu.edu.cn)|[福建医科大学](http://www.fjmu.edu.cn)|[福建师范大学](http://www.fjtu.edu.cn)|[福建中医药大学](http://www.fjtcm.edu.cn)|[厦门理工学院](http://www.xmut.edu.cn)| 514 | |[福建工程学院](http://www.fjut.edu.cn)|[泉州师范学院](http://www.qztc.edu.cn)|[漳州师范学院](http://www.fjzs.edu.cn)|[龙岩学院](http://www.lyun.edu.cn)|[莆田学院](http://202.101.111.193)| 515 | |[闽江学院](http://www.mju.edu.cn)|[三明学院](http://www.smc.edu.cn)|[武夷学院](http://www.nptc.edu.cn)|[福建警察学院](http://www.fjpsc.edu.cn)|[闽南理工学院](http://www.mnust.cn)| 516 | |[福建江夏学院](http://www.fjjxxy.cn/jxxy)|[宁德师范学院](http://www.ndsy.cn)|[福州外语外贸学院](http://www.fzfu.com)|[泉州医学高等专科学校](http://www.qzygz.com)|[漳州城市职业学院](http://www.zcvc.cn)| 517 | |[福建商业高等专科学校](http://www.fjcc.edu.cn)|[厦门医学高等专科学校](http://www.xmmc.com.cn)|[泉州幼儿师范高等专科学校](http://www.qzys.net)|[厦门华夏职业学院](http://www.hxxy.edu.cn)|[漳州职业技术学院](http://www.fjzzy.org)| 518 | |[福建华南女子职业学院](http://www.hnwomen.com.cn)|[泉州纺织服装职业学院](http://www.qzfzfz.com)|[福建船政交通职业学院](http://www.fjcpc.edu.cn)|[福州英华职业学院](http://www.fzacc.com)|[黎明职业大学](http://www.lmu.cn)| 519 | |[厦门城市职业学院](http://www.xmcu.cn)|[福建艺术职业学院](http://www.fjyszyxy.com)|[福建生物工程职业技术学院](http://www.fjvcb.cn)|[德化陶瓷职业技术学院](http://www.dhcc.cc)|[厦门兴才学院](http://www.xmxc.com/)| 520 | |[福州软件职业技术学院](http://www.fzrjxy.com)|[福建体育职业学院](http://www.fjipe.cn)|[泉州华光摄影艺术学院](http://www.huaguang.org)|[福州职业技术学院](http://www.fvti.cn)|[泉州理工学院](http://www.qzit.edu.cn)| 521 | |[三明职业技术学院](http://www.smvtc.com)|[泉州信息职业技术学院](http://www.qziedu.cn)|[闽西职业技术学院](http://www.mxdx.net)|[闽北职业技术学院](http://www.mbu.cn)|[福州海峡职业技术学院](http://www.hxcollege.com)| 522 | |[福建警官职业学院](http://www.fjjgxy.com)|[福建对外经济贸易职业技术学院](http://www.fibec.cn)|[湄洲湾职业技术学院](http://www.fjmzw.com)|[泉州经贸职业技术学院](http://www.qzjmc.cn)|[福州科技职业技术学院](http://www.fzstc.com)| 523 | |[福州黎明职业技术学院](http://www.fzlmxy.cn)|[厦门演艺职业学院](http://www.xmyanyi.com)|[厦门华天涉外职业技术学院](http://www.xmht.com)|[厦门软件职业技术学院](http://www.xmstc.cn)|[厦门海洋职业技术学院](http://www.xmoc.cn)| 524 | |[福建农业职业技术学院](http://www.fjny.com)|[福建林业职业技术学院](http://www.fjlzy.com)|[福建电力职业技术学院](http://www.fjdy.net)|[福建信息职业技术学院](http://www.mitu.cn)|[福建水利电力职业技术学院](http://www.fjsdxy.com)| 525 | |[厦门南洋职业学院](http://www.xnanyang.com)|[武夷山职业学院](http://www.wyszyxy.com)|[宁德职业技术学院](http://www.ndgzy.com)|[厦门东海职业技术学院](http://www.xmdh.com)|[漳州卫生职业学院](http://www.zzyhxy.com)| 526 | |[漳州科技学院](http://www.tftc.edu.cn)|[福建卫生职业技术学院](http://www.fjwx.com.cn)|[漳州理工职业学院](http://www.zzlg.org)|[厦门安防科技职业学院](http://www.xmafkj.com)|[泉州泰山航海职业学院](http://www.qztmi.cn)| 527 | |[泉州轻工学院](http://www.qzqgxy.com)|[厦门大学嘉庚学院](http://jgxy.xmu.edu.cn)|[福州大学阳光学院](http://ygxy.fzu.edu.cn)|[福建师范大学协和学院](http://cuc.fjnu.edu.cn)|[福建农林大学东方学院](http://www.fafuoc.com)| 528 | |[福建师范大学闽南科技学院](http://www.mnkjxy.com)|[华侨大学厦门工学院](http://www.xithqu.com)|[集美大学诚毅学院](http://chengyi.jmu.edu.cn)|[福州大学至诚学院](http://www.fdzcxy.com)|[福建农林大学金山学院](http://jsxy.fafu.edu.cn)| 529 | |[福建商学院](http://www.fjbu.edu.cn/)|[厦门医学院](https://www.xmmc.edu.cn/)|[厦门华厦学院](https://www.hxxy.edu.cn/)|[泉州职业技术大学](http://www.qzit.edu.cn/)|[闽南科技学院](http://www.mku.edu.cn/)| 530 | |[福州工商学院](http://www.fjdfxy.com/)|[厦门工学院](http://www.xit.edu.cn/)|[阳光学院](http://www.ygu.edu.cn/)|[泉州信息工程学院](http://www.qziedu.cn/)|[福州理工学院](http://www.fit.edu.cn/)| 531 | |[福建技术师范学院](http://www.fjnufq.edu.cn/)|[泉州华光职业学院](https://www.hgu.cn/)|[福建幼儿师范高等专科学校](http://www.fjys.edu.cn/)|[泉州工艺美术职业学院](http://www.qzgymy.cn/)|[三明医学科技职业学院](http://www.smykzy.cn/)| 532 | |[厦门兴才职业技术学院](http://www.xmxc.com/)|[福建体育职业技术学院](http://www.fjipe.cn/)|[漳州科技职业学院](http://www.tftc.edu.cn/)|[泉州海洋职业学院](https://www.qzoiedu.com/)|[泉州轻工职业学院](http://www.qzqgxy.com/)| 533 | |[闽江师范高等专科学校](http://www.fzmjtc.cn/)|[泉州工程职业技术学院](http://qzgcu.mku.edu.cn/)|[福州墨尔本理工职业学院](http://www.fmp.edu.cn/)|[福建中医学院](http://www.fjtcm.edu.cn/)|[厦门南洋学院](http://www.xnanyang.com/)| 534 | |[福建交通职业技术学院](http://www.fjcpc.edu.cn/)|[福建广播电视大学](http://www.fjrtvu.edu.cn/)|[泉州经贸学院](http://www.qzjmc.cn/)||| 535 | 536 | 537 | ### 北京 538 | 539 | > 总数: 117 540 | 541 | |||||| 542 | |-|-|-|-|-| 543 | |[北京大学](http://www.pku.edu.cn)|[中国人民大学](http://www.ruc.edu.cn)|[清华大学](http://www.tsinghua.edu.cn)|[北京交通大学](http://www.njtu.edu.cn)|[北京科技大学](http://www.ustb.edu.cn)| 544 | |[中国石油大学](http://www.cup.edu.cn)|[中国矿业大学](http://www.cumtb.edu.cn)|[中国地质大学](http://www.cugb.edu.cn)|[北京邮电大学](http://www.bupt.edu.cn)|[华北电力大学](http://www.ncepu.edu.cn)| 545 | |[北京化工大学](http://www.buct.edu.cn/)|[中国农业大学](http://www.cau.edu.cn)|[北京林业大学](http://www.bjfu.edu.cn)|[北京中医药大学](http://www.bucm.edu.cn)|[北京师范大学](http://www.bnu.edu.cn)| 546 | |[北京外国语大学](http://www.bfsu.edu.cn)|[北京语言大学 ](http://www.blcu.edu.cn)|[对外经济贸易大学](http://www.uibe.edu.cn)|[中央财经大学](http://www.cufe.edu.cn)|[中国政法大学](http://www.cupl.edu.cn)| 547 | |[中央民族大学](http://www.muc.edu.cn)|[中国人民公安大学](http://www.cppsu.edu.cn)|[北京协和医学院](http://www.cams.ac.cn)|[北京体育大学](http://www.bsu.edu.cn)|[北京理工大学](http://www.bit.edu.cn)| 548 | |[北京航空航天大学](http://www.buaa.edu.cn)|[北京信息科技大学](http://www.bistu.edu.cn)|[北京工商大学](http://www.btbu.edu.cn)|[北京联合大学](http://www.buu.edu.cn)|[北京工业大学](http://www.bjut.edu.cn)| 549 | |[北方工业大学](http://www.ncut.edu.cn)|[首都医科大学](http://www.ccmu.edu.cn)|[首都师范大学](http://www.cnu.edu.cn)|[首都经济贸易大学](http://www.cueb.edu.cn)|[中国传媒大学](http://www.cuc.edu.cn)| 550 | |[国际关系学院](http://www.uir.cn)|[中央美术学院](http://www.cafa.edu.cn)|[中央戏剧学院](http://www.chntheatre.edu.cn)|[中央音乐学院](http://www.ccom.edu.cn)|[北京电子科技学院](http://www.besti.edu.cn)| 551 | |[外交学院](http://www.cfau.edu.cn)|[中国劳动关系学院](http://www.ciir.edu.cn)|[中国青年政治学院](http://www.cyu.edu.cn)|[中华女子学院](http://www.cwu.edu.cn)|[北京建筑工程学院](http://www.bucea.edu.cn)| 552 | |[北京服装学院](http://www.bift.edu.cn)|[北京印刷学院](http://www.bigc.edu.cn)|[北京石油化工学院](http://www.bipt.edu.cn)|[首钢工学院](http://www.sgit.edu.cn)|[北京农学院](http://www.bac.edu.cn)| 553 | |[首都体育学院](http://www.cipe.net.cn)|[北京第二外国语学院](http://www.bisu.edu.cn)|[北京物资学院](http://www.bwu.edu.cn)|[中国音乐学院](http://www.ccmusic.edu.cn)|[北京舞蹈学院](http://www.bda.edu.cn)| 554 | |[中国戏曲学院](http://www.nacta.edu.cn)|[北京电影学院](http://www.bfa.edu.cn)|[北京城市学院](http://www.bcu.edu.cn)|[北京青年政治学院](http://www.bjypc.edu.cn)|[北京工业职业技术学院](http://www.bgy.org.cn)| 555 | |[北京科技经营管理学院](http://www.bjjsy1985.cn)|[北京电子科技职业学院](http://www.dky.bjedu.cn)|[北京信息职业技术学院](http://www.bitc.edu.cn)|[北京社会管理职业学院](http://sgy.mca.gov.cn)|[北京吉利大学](http://www.bgeelyu.com)| 556 | |[北京农业职业学院](http://www.bvca.edu.cn)|[北京科技职业学院](http://www.5aaa.com)|[北京北大方正软件技术学院](http://www.pfc.edu.cn)|[北京现代职业技术学院](http://www.moderncollege.com.cn)|[北京经济管理职业学院](http://www.biem.edu.cn)| 557 | |[北京财贸职业学院](http://www.bjczy.edu.cn)|[北京政法职业学院](http://www.bcpl.cn)|[北京交通职业技术学院](http://www.jtxy.com.cn)|[北京新圆明职业学院](http://www.ymyu.com)|[北京汇佳职业学院](http://www.hju.net.cn)| 558 | |[北京培黎职业学院](http://www.bjpldx.edu.cn)|[北京戏曲艺术职业学院](http://www.bjxx.com.cn)|[北京京北职业技术学院](http://www.jbzy.com.cn)|[北京劳动保障职业学院](http://www.bvclss.cn)|[北京体育职业学院](http://www.bjtzhy.org)| 559 | |[北京经贸职业学院](http://www.csuedu.com)|[北京交通运输职业学院](http://www.bjjtxx.com)|[北京经济技术职业学院](http://www.tangedu.cn)|[北京第二外国语学院中瑞酒店管理学院](http://www.bhi.edu.cn)|[北京邮电大学世纪学院](http://www.ccbupt.cn)| 560 | |[首都师范大学科德学院](http://www.kdcnu.com)|[北京工商大学嘉华学院](http://www.canvard.com.cn)|[北京工业大学耿丹学院](http://www.gengdan.cn)|[北京建筑大学](https://www.bucea.edu.cn/)|[北京语言大学](http://www.blcu.edu.cn/)| 561 | |[中国消防救援学院](http://www.mem.gov.cn/slxfxy/index.html)|[中国矿业大学(北京)](https://www.cumtb.edu.cn/)|[中国石油大学(北京)](http://www.cup.edu.cn/)|[中国地质大学(北京)](https://www.cugb.edu.cn/)|[北京警察学院](http://www.bjpc.edu.cn/)| 562 | |[中国科学院大学](https://www.ucas.ac.cn/)|[中国社会科学院大学](https://www.ucass.edu.cn/)|[北京北大方正软件职业技术学院](http://www.pfc.edu.cn/)|[北京艺术传媒职业学院](http://www.bjamu.cn/)|[北京卫生职业学院](http://www.bjwszyxy.com/)| 563 | |[北京网络职业学院](http://www.bjwlxy.org.cn/index.html)|[首都经贸大学](http://www.cueb.edu.cn/)|[对外经贸大学](http://www.uibe.edu.cn/)|[北京大学医学部](http://www.bjmu.edu.cn/)|[中国协和医科大学](http://www.pumc.edu.cn/)| 564 | |[中央广播电视大学](http://www.crtvu.edu.cn/)|[北京教育学院](http://www.bjie.ac.cn/)|[北京联合大学应用文理学院](http://www.ygi.edu.cn/)|[中国科技管理学院](http://www.stmcedu.cn/)|[北京东方大学](http://www.bdfu.edu.cn/)| 565 | |[中国科学院研究生院](http://www.gscas.ac.cn/)|[北京电大](http://www.btvu.org/)|[中国信息大学](http://www.ciu.gov.cn)|[北京人文大学](http://www.bjrwdx.com)|[中国国际经济学院](http://www.miemi.cn/)| 566 | |[北京化工大学北方学院](http://www.ncbuct.edu.cn/)|[北京工商管理学院](http://www.bjuba.com.cn/)|||| 567 | 568 | 569 | ### 天津 570 | 571 | > 总数: 66 572 | 573 | |||||| 574 | |-|-|-|-|-| 575 | |[南开大学](http://www.nankai.edu.cn)|[天津大学](http://www.tju.edu.cn)|[中国民航大学](http://www.cauc.edu.cn)|[天津工业大学](http://www.tjpu.edu.cn)|[天津科技大学](http://www.tuli.edu.cn)| 576 | |[天津理工大学](http://www.tjut.edu.cn)|[天津医科大学](http://www.tijmu.edu.cn)|[天津中医药大学](http://www.tjutcm.edu.cn)|[天津师范大学](http://www.tjnu.edu.cn)|[天津财经大学](http://www.tjufe.edu.cn)| 577 | |[天津商业大学](http://www.tjcu.edu.cn)|[河北工业大学](http://www.hebut.edu.cn/)|[天津城市建设学院](http://www.tjuci.edu.cn)|[天津农学院](http://www.tjac.edu.cn)|[天津外国语大学](http://www.tjfsu.edu.cn)| 578 | |[天津职业技术师范大学](http://www.tute.edu.cn)|[天津体育学院](http://www.tjus.edu.cn)|[天津音乐学院](http://www.tjcm.edu.cn)|[天津美术学院](http://www.tjarts.edu.cn)|[天津天狮学院](http://www.tianshi.edu.cn)| 579 | |[天津医学高等专科学校](http://www.tjyzh.cn)|[天津机电职业技术学院](http://www.suoyuan.com.cn)|[天津现代职业技术学院](http://www.xdxy.com.cn)|[天津轻工职业技术学院](http://www.tjlivtc.edu.cn)|[天津职业大学](http://www.tjtc.edu.cn)| 580 | |[天津滨海职业学院](http://www.tjbpi.com)|[天津公安警官职业学院](http://www.tjjingyuan.cn)|[天津渤海职业技术学院](http://www.tjbhzy.net.cn)|[天津工程职业技术学院](http://www.tjeti.com)|[天津电子信息职业技术学院](http://www.tjdz.net)| 581 | |[天津城市建设管理职业技术学院](http://www.tjchengjian.com)|[天津广播影视职业学院](http://www.tjgbys.com)|[天津国土资源和房屋职业学院](http://www.tjgsxy.com.cn)|[天津海运职业学院](http://www.tjhyzyxy.com)|[天津中德职业技术学院](http://www.zdtj.cn)| 582 | |[天津石油职业技术学院](http://www.tjsyxy.com)|[天津艺术职业学院](http://www.tjysxy.com)|[天津城市职业学院](http://www.tjcsxy.cn)|[天津生物工程职业技术学院](http://www.tjbio.cn)|[天津冶金职业技术学院](http://www.tjmvti.cn)| 583 | |[天津工艺美术职业学院](http://www.gmtj.com)|[天津铁道职业技术学院](http://www.tjtdxy.cn)|[天津交通职业学院](http://www.tjtvc.com)|[天津商务职业学院](http://www.tifert.edu.cn)|[天津青年职业学院](http://www.tjqnzyxy.cn)| 584 | |[天津开发区职业技术学院](http://www.tedazj.com)|[南开大学滨海学院](http://binhai.nankai.edu.cn)|[天津外国语大学滨海外事学院](http://bhws.tjfsu.edu.cn)|[天津商业大学宝德学院](http://www.boustead.edu.cn)|[天津医科大学临床医学院](http://www.tijmu.edu.cn/cn/clinmedcol)| 585 | |[北京科技大学天津学院](http://tj.ustb.edu.cn)|[天津师范大学津沽学院](http://www.jinguxy.cn)|[天津理工大学中环信息学院](http://www.tjzhic.com)|[天津大学仁爱学院](http://www.tjrac.edu.cn)|[天津财经大学珠江学院](http://zhujiang.tjufe.edu.cn)| 586 | |[天津城建大学](http://www.tcu.edu.cn/)|[天津中德应用技术大学](http://www.tsguas.edu.cn/)|[天津体育学院运动与文化艺术学院](http://www.tjtwy.cn/)|[天津市职业大学](http://www.tjtc.edu.cn/)|[天津工业职业学院](https://www.pctj.edu.cn/)| 587 | |[天津体育职业学院](http://www.tjvcs.cn/)|[天津滨海汽车工程职业学院](http://www.tqzyxy.com/)|[天津广播电视大学](http://www.tjrtvu.edu.cn/)|[天津工程师范学院](http://www.tute.edu.cn/)|[天津外国语学院](http://www.tjfsu.edu.cn/)| 588 | |[天津对外经济贸易职业学院](http://www.tifert.edu.cn/)||||| 589 | 590 | 591 | ### 黑龙江 592 | 593 | > 总数: 86 594 | 595 | |||||| 596 | |-|-|-|-|-| 597 | |[黑龙江大学](http://www.hlju.edu.cn/)|[哈尔滨工业大学](http://www.hit.edu.cn/)|[哈尔滨理工大学](http://www.hrbust.edu.cn/)|[哈尔滨工程大学](http://www.hrbeu.edu.cn/)|[黑龙江科技大学](http://www.usth.edu.cn/)| 598 | |[东北石油大学](http://www.nepu.edu.cn/)|[佳木斯大学](http://www.jmsu.edu.cn/)|[黑龙江八一农垦大学](http://www.byau.edu.cn/)|[东北农业大学](http://www.neau.edu.cn)|[东北林业大学](https://www.nefu.edu.cn/)| 599 | |[哈尔滨医科大学](http://www.hrbmu.edu.cn/)|[黑龙江中医药大学](http://www.hljucm.net/)|[牡丹江医学院](http://www.mdjmu.cn/)|[哈尔滨师范大学](http://www.hrbnu.edu.cn/)|[齐齐哈尔大学](http://www.qqhru.edu.cn/)| 600 | |[牡丹江师范学院](http://www.mdjnu.cn/)|[哈尔滨学院](http://www.hrbu.edu.cn/)|[大庆师范学院](http://www.dqsy.net/)|[绥化学院](http://www.shxy.edu.cn/)|[哈尔滨商业大学](https://www.hrbcu.edu.cn/)| 601 | |[哈尔滨体育学院](http://www.hrbipe.edu.cn/)|[哈尔滨金融学院](https://www.hrbfu.edu.cn/)|[齐齐哈尔医学院](https://www.qmu.edu.cn/)|[黑龙江工业学院](http://www.hljut.edu.cn/)|[黑龙江东方学院](http://www.dfxy.net/)| 602 | |[哈尔滨信息工程学院](http://www.hxci.com.cn/)|[黑龙江工程学院](http://www.hljit.edu.cn/)|[齐齐哈尔工程学院](https://www.qqhrit.com/)|[黑龙江外国语学院](http://www.hiu.edu.cn)|[黑龙江财经学院](https://www.hfu.edu.cn/)| 603 | |[哈尔滨石油学院](http://www.hip.edu.cn/)|[黑龙江工商学院](https://www.hibu.edu.cn/)|[哈尔滨远东理工学院](http://www.fe-edu.com.cn/)|[哈尔滨剑桥学院](http://www.hcc.edu.cn/)|[黑龙江工程学院昆仑旅游学院](http://www.kllyxy.com/)| 604 | |[哈尔滨广厦学院](http://www.gsxy.cn/)|[哈尔滨华德学院](http://www.hhdu.edu.cn/)|[黑河学院](http://www.hhhxy.cn/)|[哈尔滨音乐学院](http://www.hrbcm.edu.cn/)|[齐齐哈尔高等师范专科学校](http://www.qqhrtc.com/)| 605 | |[伊春职业学院](http://www.ycvc.com.cn/)|[牡丹江大学](http://www.mdjdx.cn/)|[黑龙江职业学院](http://www.hljp.edu.cn/)|[黑龙江建筑职业技术学院](http://www.hict.org.cn/)|[黑龙江艺术职业学院](http://www.hljyzy.org.cn/)| 606 | |[大庆职业学院](http://www.dqzyxy.net/)|[黑龙江林业职业技术学院](http://www.hljlzy.com/)|[黑龙江农业职业技术学院](http://www.hljnzy.net/)|[黑龙江农业工程职业学院](http://www.hngzy.com/)|[黑龙江农垦职业学院](http://www.nkzy.org.cn/)| 607 | |[黑龙江司法警官职业学院](http://www.hljsfjy.org.cn/)|[鹤岗师范高等专科学校](http://www.hgtc.org.cn/)|[哈尔滨铁道职业技术学院](http://www.htxy.net/)|[大兴安岭职业学院](http://www.dxalu.org.cn/)|[黑龙江农业经济职业学院](http://www.hnyjj.org.cn/)| 608 | |[哈尔滨职业技术学院](http://www.hzjxy.org.cn/)|[哈尔滨传媒职业学院](http://www.hrbmcc.com/)|[黑龙江生物科技职业学院](http://www.hljswkj.org.cn/)|[黑龙江商业职业学院](http://www.hljszy.net/)|[黑龙江公安警官职业学院](http://www.hlpolice.gov.cn/)| 609 | |[哈尔滨城市职业学院](http://www.13451.cn/)|[黑龙江农垦科技职业学院](http://www.nkkjxy.org.cn/)|[黑龙江旅游职业技术学院](http://www.ljlyzy.org.cn/)|[黑龙江三江美术职业学院](http://www.sjmsxy.net.cn/)|[黑龙江生态工程职业学院](http://www.hljstgc.org.cn/)| 610 | |[黑龙江能源职业学院](http://hljny.org.cn/)|[七台河职业学院](http://www.qthzyxy.com/)|[黑龙江民族职业学院](http://www.hljmzzyxy.org.cn/)|[大庆医学高等专科学校](http://www.dqygz.com/)|[黑龙江交通职业技术学院](http://www.hlcp.com.cn/)| 611 | |[哈尔滨应用职业技术学院](http://www.hyyzy.com/)|[黑龙江幼儿师范高等专科学校](http://www.hljys.com/)|[哈尔滨科学技术职业学院](http://www.hrbkjzy.org.cn/)|[佳木斯职业学院](http://www.jmszy.org.cn/)|[黑龙江护理高等专科学校](http://www.hljhlgz.org.cn/)| 612 | |[齐齐哈尔理工职业学院](http://www.qlgxy.com/)|[哈尔滨幼儿师范高等专科学校](https://www.hayouzhuan.org.cn/)|[黑龙江冰雪体育职业学院](http://www.vcws.org.cn/)|[哈尔滨北方航空职业技术学院](https://www.habeihang.com/)|[大庆石油学院](http://www.dqpi.edu.cn)| 613 | |[黑龙江信息技术职业学院](http://www.hljitpc.com/)|[哈尔滨金融高等专科学校](http://www.hrbjz.edu.cn/)|[鸡西大学](http://www.jxdx.net)|[黑龙江科技学院](http://www.usth.edu.cn/main/)|[黑龙江农垦农业职业技术学院](http://www.nknzy.com/)| 614 | |[黑龙江工商职业技术学院](http://www.hcic.gov.cn/)||||| 615 | 616 | 617 | ### 吉林 618 | 619 | > 总数: 75 620 | 621 | |||||| 622 | |-|-|-|-|-| 623 | |[吉林大学](http://www.jlu.edu.cn)|[东北师范大学](http://www.nenu.edu.cn)|[延边大学](http://www.ybu.edu.cn)|[北华大学](http://www.beihua.edu.cn)|[长春大学](http://www.ccu.edu.cn)| 624 | |[长春理工大学](http://www.cust.edu.cn)|[长春工业大学](http://www.ccut.edu.cn)|[吉林农业大学](http://www.jlau.edu.cn)|[长春中医药大学](http://www.ccucm.edu.cn)|[吉林师范大学](http://www.jlnu.edu.cn)| 625 | |[东北电力大学](http://www.nedu.edu.cn)|[吉林财经大学](http://www.ctu.cc.jl.cn)|[长春工程学院](http://www.ccit.edu.cn)|[吉林建筑工程学院](http://www.jliae.edu.cn)|[吉林化工学院](http://www.jlict.edu.cn)| 626 | |[吉林农业科技学院](http://www.jlnku.com)|[吉林医药学院](http://www.jlmpc.cn)|[吉林工程技术师范学院](http://www.jltiet.net)|[通化师范学院](http://www.thnu.edu.cn)|[白城师范学院](http://www.bcsfxy.com)| 627 | |[长春师范学院](http://www.cncnc.edu.cn)|[吉林华侨外国语学院](http://www.hqwy.com)|[吉林工商学院](http://www.jlbtc.edu.cn)|[吉林体育学院](http://www.jlty.com.cn)|[吉林艺术学院](http://www.jlart.edu.cn)| 628 | |[吉林动画学院](http://www.jldh.com.cn)|[吉林警察学院](http://www.jljcxy.com/)|[长春建筑学院](http://www.jladi.com)|[白城医学高等专科学校](http://www.bcyz.cn)|[长春汽车工业高等专科学校](http://www.caii.edu.cn)| 629 | |[长春医学高等专科学校](http://www.cmcedu.com)|[长春金融高等专科学校](http://www.cjgz.edu.cn)|[四平职业大学](http://www.jlsppc.cn)|[吉林交通职业技术学院](http://www.jjtc.com.cn)|[长春东方职业学院](http://www.dfzyxy.edu.cn)| 630 | |[辽源职业技术学院](http://www.lyvtc.cn)|[长白山职业技术学院](http://www.cbsvtc.com.cn)|[吉林司法警官职业学院](http://www.jlsfjy.cn/)|[松原职业技术学院](http://www.sypt.cn)|[长春职业技术学院](http://www.cvit.com.cn)| 631 | |[吉林农业工程职业技术学院](http://www.jlnyxy.com.cn)|[吉林工业职业技术学院](http://www.jvcit.edu.cn)|[吉林电子信息职业技术学院](http://www.jltc.edu.cn)|[长春信息技术职业学院](http://www.citpc.net)|[吉林铁道职业技术学院](http://www.jtpt.cn)| 632 | |[白城职业技术学院](http://www.bcvit.cn)|[吉林科技职业技术学院](http://www.jilinkj.com)|[吉林建筑工程学院城建学院](http://www.jlucc.net)|[长春大学光华学院](http://www.ccughc.net)|[长春工业大学人文信息学院](http://www.ccutchi.com)| 633 | |[长春理工大学光电信息学院](http://www.csoei.com)|[吉林财经大学信息经济学院](http://www.iecctc.com)|[吉林农业大学发展学院](http://www.jlaudev.com.cn/)|[东北师范大学人文学院](http://www.chsnenu.edu.cn/)|[吉林师范大学博达学院](http://www.bdxy.com.cn)| 634 | |[长春大学旅游学院](http://www.cctourcollege.com)|[吉林建筑大学](http://www.jlju.edu.cn/)|[长春师范大学](http://www.ccsfu.edu.cn/)|[吉林外国语大学](http://www.jisu.edu.cn/)|[长春光华学院](http://www.ghu.edu.cn/)| 635 | |[长春财经学院](https://www.ccufe.edu.cn/)|[吉林建筑科技学院](http://www.jluat.edu.cn/)|[长春科技学院](http://www.jlaudev.com.cn/)|[长春师范高等专科学校](http://www.ccsfgz.com/)|[吉林工程职业学院](https://jlevc.cn/)| 636 | |[延边职业技术学院](http://www.ybvtc.com/)|[吉林城市职业技术学院](http://www.jlcsxy.com/)|[吉林职业技术学院](http://www.jlhtedu.com/)|[吉林水利电力职业学院](https://www.jlsy.edu.cn/)|[长春健康职业学院](http://www.ccvch.com/)| 637 | |[长春早期教育职业学院](http://www.cczjxy.com/)|[梅河口康美职业技术学院](http://www.mhkkmzyjsxy.com:8089/)|[长春税务学院](http://www.ctu.cc.jl.cn/)|[吉林华桥外国语学院](http://www.hqwy.com/)|[吉林艺术学院动画学院](http://www.jldh.com.cn/)| 638 | 639 | 640 | ### 辽宁 641 | 642 | > 总数: 140 643 | 644 | |||||| 645 | |-|-|-|-|-| 646 | |[大连理工大学](http://www.dlut.edu.cn)|[东北大学](http://www.neu.edu.cn)|[大连海事大学](http://www.dlmu.edu.cn)|[辽宁大学](http://www.lnu.edu.cn)|[大连大学](http://www.dlu.edu.cn)| 647 | |[沈阳大学](http://www.syu.edu.cn)|[沈阳理工大学](http://www.syit.edu.cn)|[辽宁工程技术大学](http://www.lntu.edu.cn)|[沈阳工业大学](http://www.sut.edu.cn)|[沈阳建筑大学](http://www.sjzu.edu.cn)| 648 | |[辽宁石油化工大学](http://www.lnpu.edu.cn)|[大连交通大学](http://www.djtu.edu.cn)|[辽宁科技大学](http://www.ustl.edu.cn/)|[辽宁工业大学](http://www.lnit.edu.cn)|[大连工业大学](http://www.dlpu.edu.cn)| 649 | |[沈阳农业大学](http://www.syau.edu.cn)|[中国医科大学](http://www.cmu.edu.cn)|[大连医科大学](http://www.dlmedu.edu.cn)|[辽宁中医药大学](http://www.lnutcm.edu.cn)|[沈阳药科大学](http://www.syphu.edu.cn)| 650 | |[辽宁师范大学](http://www.lnnu.edu.cn)|[沈阳师范大学](http://www.synu.edu.cn)|[渤海大学](http://www.bhu.edu.cn)|[东北财经大学](http://www.dufe.edu.cn)|[沈阳化工大学](http://www.syuct.edu.cn/)| 651 | |[沈阳航空航天大学](http://www.sau.edu.cn/)|[大连海洋大学](http://www.dlfu.edu.cn/)|[大连民族学院](http://www.dlnu.edu.cn)|[中国刑事警察学院](http://www.ccpc.edu.cn)|[沈阳工程学院](http://www.syce.edu.cn)| 652 | |[辽宁科技学院](http://www.lnist.edu.cn)|[大连东软信息学院](http://www.neusoft.edu.cn)|[辽宁医学院](http://www.lnmu.edu.cn)|[沈阳医学院](http://www.symc.edu.cn)|[鞍山师范学院](http://www.asnc.edu.cn)| 653 | |[大连外国语学院](http://www.dlufl.edu.cn)|[辽宁财贸学院](http://www.lncmxy.com)|[沈阳体育学院](http://www.syty.edu.cn)|[鲁迅美术学院](http://www.lumei.edu.cn)|[沈阳音乐学院](http://www.sycm.com.cn)| 654 | |[大连艺术学院](http://www.dac.edu.cn)|[辽东学院](http://www.ldxy.cn)|[辽宁对外经贸学院](http://www.luibe.edu.cn)|[大连科技学院](http://www.dist.edu.cn)|[辽宁省交通高等专科学校](http://www.lncc.edu.cn)| 655 | |[铁岭师范高等专科学校](http://www.tlsz.com.cn)|[锦州师范高等专科学校](http://www.jzsz.com.cn/)|[抚顺师范高等专科学校](http://www.fstc.cn)|[朝阳师范高等专科学校](http://www.cysz.com.cn)|[辽宁警官高等专科学校](http://www.lnpc.cn)| 656 | |[阜新高等专科学校](http://www.fxgz.com.cn)|[大连职业技术学院](http://www.dlvtc.edu.cn)|[抚顺职业技术学院](http://www.fvti.com)|[营口职业技术学院](http://www.ykdx.net)|[辽宁农业职业技术学院](http://www.lnnzy.ln.cn)| 657 | |[大连商务职业学院](http://www.dbiedu.com/)|[盘锦职业技术学院](http://www.pjzy.net.cn)|[渤海船舶职业学院](http://www.bhcy.cn)|[辽阳职业技术学院](http://www.419.com.cn)|[辽宁信息职业技术学院](http://www.lnxxxy.com)| 658 | |[辽宁金融职业学院](http://www.lnfvc.cn)|[辽宁石化职业技术学院](http://www.lnpc.edu.cn)|[辽宁经济职业技术学院](http://www.lnemci.com)|[辽宁理工职业学院](http://www.lndhdx.com)|[辽宁机电职业技术学院](http://www.lnmec.net.cn)| 659 | |[辽宁铁道职业技术学院](http://www.lntzy.com/)|[大连艺术职业学院](http://www.xzzsks.com.cn/Article/ShowArticle.asp?ArticleID=1704)|[辽宁建筑职业技术学院](http://www.lnjzxy.com/)|[辽宁广告职业学院](http://www.ggxy.com)|[辽宁体育运动技术学院](http://www.lnen.cn/mb/view.html?actionType=home&domainid=96)| 660 | |[沈阳职业技术学院](http://www.vtcsy.com)|[大连软件学院](http://www.dlrj.edu.cn/)|[大连翻译职业学院](http://www.dltcedu.org)|[辽宁商贸职业学院](http://www.lnsmzy.edu.cn)|[大连枫叶职业技术学院](http://www.dlxgjy.com/)| 661 | |[辽宁地质工程职业学院](http://www.lndzxy.com)|[辽宁装备制造职业技术学院](http://www.ltcem.com)|[辽宁职业学院](http://www.lnvc.cn)|[辽宁林业职业技术学院](http://www.lnlzy.cn)|[大连装备制造职业技术学院](http://www.dlzbzzedu.com)| 662 | |[大连汽车职业技术学院](http://www.dlqcxy.com)|[辽宁现代服务职业技术学院](http://www.lnxdfwxy.com)|[大连航运职业技术学院](http://www.dlsc.net.cn)|[辽宁美术职业学院](http://www.fzcollege.org)|[沈阳航空职业技术学院](http://www.syhzy.cn)| 663 | |[辽河石油职业技术学院](http://www.cnpc.com.cn/lhyt/dw/zh/%E8%BE%BD%E6%B2%B3%E7%9F%B3%E6%B2%B9%E8%81%8C%E4%B8%9A%E6%8A%80%E6%9C%AF%E5%AD%A6%E9%99%A2.htm)|[辽宁城市建设职业技术学院](http://www.lncjxy.com)|[辽宁工程职业学院](http://www.lngczyxy.com)|[辽宁冶金职业技术学院](http://www.lnyj.net)|[铁岭卫生职业学院](http://www.lntlhc.com)| 664 | |[辽宁卫生职业技术学院](http://www.lzygzy-edu.com)|[大连理工大学城市学院](http://city.dlut.edu.cn)|[沈阳航空工业学院北方科技学院](http://nstc.syiae.edu.cn)|[沈阳大学科技工程学院](http://www.sdkj-syu.net/)|[渤海大学文理学院](http://202.118.7.139)| 665 | |[东北财经大学津桥商学院](http://www.kingbridge.net)|[大连工业大学艺术与信息工程学院](http://www.caie.org)|[辽宁科技大学信息技术学院](http://zsjy.ustl.edu.cn/xxxy)|[中国医科大学临床医药学院](http://www.cmu.edu.cn/departments/clini_med)|[辽宁石油化工大学顺华能源学院](http://www.lnshny.com)| 666 | |[辽宁师范大学海华学院](http://haihua.lnnu.edu.cn)|[沈阳建筑大学城市建设学院](http://www.sjcy.cn)|[辽宁中医药大学杏林学院](http://lncmxl.edu.cn/)|[沈阳农业大学科学技术学院](http://www.syau.edu.cn/fx)|[沈阳理工大学应用技术学院](http://www.syyyy.com.cn)| 667 | |[辽宁医学院医疗学院](http://ylxy.lnmu.edu.cn)|[大连医科大学中山学院](http://www.dmuzs.edu.cn/)|[沈阳工业大学工程学院](http://gcxy.sut.edu.cn)|[沈阳化工大学科亚学院](http://www.syuctky.edu.cn/)|[锦州医科大学](https://www.jzmu.edu.cn/)| 668 | |[大连外国语大学](http://www.dlufl.edu.cn/)|[辽宁警察学院](http://www.lnpc.cn/)|[大连民族大学](https://www.dlnu.edu.cn/)|[辽宁理工职业大学](http://www.lndhdx.com/)|[沈阳工学院](https://www.situ.edu.cn/)| 669 | |[沈阳城市建设学院](http://www.syucu.edu.cn/)|[锦州医科大学医疗学院](https://www.jymu.edu.cn/)|[辽宁理工学院](http://www.lise.edu.cn/)|[大连财经学院](http://www.dlufe.edu.cn/)|[沈阳城市学院](http://www.sycu.cn/)| 670 | |[辽宁何氏医学院](http://www.he-edu.com/)|[沈阳科技学院](http://www.syist.edu.cn/)|[辽宁传媒学院](http://www.lncu.cn/)|[营口理工学院](http://www.yku.edu.cn/)|[辽宁税务高等专科学校](http://www.dltaxedu.com/)| 671 | |[辽宁生态工程职业学院](http://www.lnstzy.cn/)|[辽宁轨道交通职业学院](https://www.lgzy.com.cn/)|[大连软件职业学院](http://dlrjedu.cn/)|[辽宁建筑职业学院](http://www.lnjzxy.com/)|[辽宁医药职业学院](http://www.lnyyzyxy.com/)| 672 | |[沈阳北软信息职业技术学院](https://www.nsi-soft.com/nsi/index)|[辽宁政法职业学院](http://www.lacpj.org.cn/)|[辽宁民族师范高等专科学校](http://www.lnnc.edu.cn/)|[辽宁轻工职业学院](https://www.lnqg.com.cn/)|[辽宁特殊教育师范高等专科学校](http://www.lntjsz.com/)| 673 | |[辽宁师范高等专科学校](http://www.lnnc.edu.cn/)|[鞍山职业技术学院](http://www.aszyjsxy.cn/)|[沈阳航空工业学院](http://www.syiae.edu.cn/)|[沈阳化工学院](http://www.syict.edu.cn)|[大连教育学院](http://www.dlteacher.com/)| 674 | 675 | 676 | ### 陕西 677 | 678 | > 总数: 114 679 | 680 | |||||| 681 | |-|-|-|-|-| 682 | |[西安交通大学](http://www.xjtu.edu.cn)|[长安大学](http://www.chd.edu.cn)|[西安电子科技大学](http://www.xidian.edu.cn)|[西北农林科技大学](http://www.nwsuaf.edu.cn)|[陕西师范大学](http://www.snnu.edu.cn)| 683 | |[西北工业大学](http://www.nwpu.edu.cn)|[西北大学](http://www.nwu.edu.cn)|[延安大学](http://www.yau.edu.cn)|[西安理工大学](http://www.xaut.edu.cn)|[西安建筑科技大学](http://www.xauat.edu.cn)| 684 | |[西安科技大学](http://www.xust.edu.cn)|[西安石油大学](http://www.xapi.edu.cn)|[西安工程大学](http://www.xpu.edu.cn)|[西安工业大学](http://www.xatu.cn)|[西安外国语大学](http://www.xisu.edu.cn)| 685 | |[陕西科技大学](http://www.sust.edu.cn)|[西安邮电学院](http://www.xiyou.edu.cn)|[陕西中医学院](http://www.sntcm.edu.cn)|[西安医学院](http://www.xiyi.edu.cn)|[渭南师范学院](http://www.wntc.edu.cn)| 686 | |[榆林学院](http://www.yulinu.edu.cn/)|[陕西理工学院](http://www.snut.edu.cn)|[咸阳师范学院](http://www.xysfxy.cn)|[宝鸡文理学院](http://www.bjwlxy.cn/)|[西安财经学院](http://www.xaufe.edu.cn)| 687 | |[西北政法大学](http://www.nwupl.cn)|[西安体育学院](http://www.xaipe.edu.cn)|[西安美术学院](http://www.xafa.edu.cn)|[西安音乐学院](http://www.xacom.edu.cn)|[西京学院](http://www.xijing.com.cn)| 688 | |[西安文理学院](http://www.xawl.org)|[安康学院](http://www.aku.edu.cn)|[西安培华学院](http://www.peihua.cn)|[西安欧亚学院](http://www.eurasia.edu)|[西安外事学院](http://www.xaiu.edu.cn)| 689 | |[西安翻译学院](http://www.xfuedu.org)|[商洛学院](http://www.slxy.cn/)|[西安思源学院](http://www.xasyu.cn)|[陕西国际商贸学院](http://www.csiic.com)|[陕西服装工程学院](http://www.sxfu.org)| 690 | |[西安航空技术高等专科学校](http://www.xihangzh.com)|[西安电力高等专科学校](http://www.xaepi.edu.cn)|[杨凌职业技术学院](http://www.ylvtc.cn/)|[陕西工业职业技术学院](http://www.sxpi.com.cn)|[西安东方亚太职业技术学院](http://www.yt-edu.cn)| 691 | |[安康职业技术学院](http://www.ak321.com)|[西安铁路职业技术学院](http://www.xatzy.cn)|[陕西经济管理职业技术学院](http://www.sxjgy.com)|[咸阳职业技术学院](http://www.xianyangzhiyuan.cn)|[西安职业技术学院](http://www.xzyedu.com.cn)| 692 | |[商洛职业技术学院](http://www.slzyjsxy.com/)|[汉中职业技术学院](http://www.hzvtc.cn)|[西安海棠职业学院](http://www.xahtxy.cn)|[渭南职业技术学院](http://www.wnzy.net/)|[陕西邮电职业技术学院](http://www.sptc.sn.cn)| 693 | |[铜川职业技术学院](http://www.tczyxy.net)|[陕西青年职业学院](http://www.sxqzy.com/)|[陕西工商职业学院](http://www.snbcedu.cn)|[陕西电子科技职业学院](http://www.sxetcedu.com)|[陕西旅游烹饪职业学院](http://www.sncook.com)| 694 | |[西安汽车科技职业学院](http://www.atc168.com)|[延安职业技术学院](http://www.yapt.cn)|[陕西国防工业职业技术学院](http://www.gfxy.com)|[西安高新科技职业学院](http://www.xhtu.com.cn)|[西安三资职业学院](http://www.sanziedu.com)| 695 | |[西安航空职业技术学院](http://www.xihang.com.cn)|[陕西职业技术学院](http://www.spvec.com.cn)|[陕西能源职业技术学院](http://www.sxny.cn)|[陕西交通职业技术学院](http://www.scct.cn)|[宝鸡职业技术学院](http://www.bjvtc.com)| 696 | |[陕西航空职业技术学院](http://www.sxhkxy.com)|[陕西铁路工程职业技术学院](http://www.sxri.net/)|[西安科技商贸职业学院](http://www.xikemao.com)|[陕西电子信息职业技术学院](http://www.sxitu.com)|[陕西警官职业学院](http://www.sxjgxy.edu.cn/www/index.asp)| 697 | |[陕西财经职业技术学院](http://www.sxptife.net)|[西安医学高等专科学校](http://www.xagdyz.com)|[榆林职业技术学院](http://www.ylsmvtc.com/)|[西安交通大学城市学院](http://www.xjtucc.cn)|[西北大学现代学院](http://www.xdxd.cn)| 698 | |[西安建筑科技大学华清学院](http://www.xauat-hqc.com)|[西安财经学院行知学院](http://www.xcxz.com.cn)|[陕西科技大学镐京学院](http://www.kdhj-edu.net)|[西安工业大学北方信息工程学院](http://www.bxait.cn)|[延安大学西安创新学院](http://www.xacxxy.com/)| 699 | |[西安电子科技大学长安学院](http://www.xdca.com.cn)|[西北工业大学明德学院](http://www.npumd.cn)|[西安科技大学高新学院](http://www.gx-xust.com)|[长安大学兴华学院](http://www.chdxhxy.com)|[西安理工大学高科学院](http://www.xthtc.com)| 700 | |[陕西中医药大学](http://www.sntcm.edu.cn/)|[陕西理工大学](http://www.snut.edu.cn/)|[西安财经大学](http://www.xaufe.edu.cn/)|[西安邮电大学](http://www.xiyou.edu.cn/)|[西安航空学院](http://www.xaau.edu.cn/)| 701 | |[西安交通工程学院](http://www.xjgyedu.cn/)|[西安财经大学行知学院](http://www.xcxz.com.cn/)|[西安工商学院](http://www.bxait.cn/)|[西安汽车职业大学](http://www.xvua.edu.cn/)|[西安明德理工学院](http://www.mdit.edu.cn/)| 702 | |[西安信息职业大学](http://www.xivuedu.com/)|[陕西学前师范学院](http://www.snsy.edu.cn/)|[西安城市建设职业学院](http://www.xacsjsedu.com/)|[西安健康工程职业学院](http://www.jkgcxy.com/)|[陕西艺术职业学院](http://www.sxavc.com/)| 703 | |[神木职业技术学院](https://www.smzy.edu.cn/)|[宝鸡三和职业学院](http://www.sxshxy.cn/)|[榆林能源科技职业学院](https://www.ylnkxy.com/)|[陕西机电职业技术学院](http://www.sxjdzy.cn/)|[第四军医大学](http://www.fmmu.edu.cn/)| 704 | |[陕西服装艺术学院](http://www.sxfu.org/)|[西安科技商贸学院](http://www.xikemao.com/)|[陕西-西藏民族学院](http://www.xzmy.edu.cn/)|[西安技师学院](http://www.xdpxedu.com/)|| 705 | 706 | 707 | ### 山西 708 | 709 | > 总数: 88 710 | 711 | |||||| 712 | |-|-|-|-|-| 713 | |[山西大学](http://www.sxu.edu.cn)|[太原理工大学](http://www.tyut.edu.cn)|[中北大学](http://www.nuc.edu.cn)|[太原科技大学](http://www.tyust.edu.cn)|[山西农业大学](http://www.sxau.edu.cn)| 714 | |[山西医科大学](http://www.sxmu.edu.cn)|[山西师范大学](http://www.sxnu.edu.cn)|[山西大同大学](http://www.sxdtdx.edu.cn)|[山西财经大学](http://www.sxufe.edu.cn)|[太原工业学院](http://www.tit.edu.cn)| 715 | |[山西中医学院](http://www.sxtcm.com)|[长治医学院](http://www.czmc.com)|[运城学院](http://www.ycu.edu.cn)|[忻州师范学院](http://www.xztc.edu.cn)|[太原师范学院](http://www.tynu.edu.cn/)| 716 | |[晋中学院](http://www.sxjztc.edu.cn)|[长治学院](http://www.czc.edu.cn)|[吕梁学院](http://www.llhc.edu.cn)|[山西工商学院](http://www.sxtbu.net)|[太原电力高等专科学校](http://www.sxuec.edu.cn)| 717 | |[运城幼儿师范高等专科学校](http://www.sxycys.com)|[山西省财政税务专科学校](http://www.sxftc.edu.cn)|[山西警官高等专科学校](http://www.sxpu.com.cn/)|[太原大学](http://www.sxtyu.com/)|[山西建筑职业技术学院](http://www.sxatc.com/)| 718 | |[山西轻工职业技术学院](http://www.sxqgzy.cn)|[运城职业技术学院](http://www.ycptu.edu.cn/)|[潞安职业技术学院](http://sxlazy.cen114.com/)|[山西交通职业技术学院](http://www.sxjt.edu.cn)|[山西煤炭职业技术学院](http://www.sxmtxy.com.cn/)| 719 | |[大同煤炭职业技术学院](http://www.dtmtxy.cn)|[阳泉职业技术学院](http://www.tyutyqc.edu.cn)|[山西工程职业技术学院](http://www.sxgy.cn/)|[山西艺术职业学院](http://www.sxyz.com)|[山西兴华职业学院](http://www.sxxh.org)| 720 | |[临汾职业技术学院](http://www.lfvtc.cn)|[山西电力职业技术学院](http://www.dlxy.sx.sgcc.com.cn/)|[忻州职业技术学院](http://www.xzvtc.com/)|[山西信息职业技术学院](http://www.vcit.cn)|[长治职业技术学院](http://www.czzy.cn)| 721 | |[山西管理职业学院](http://www.sxglzyxy.com.cn)|[山西旅游职业学院](http://www.sxtvi.com.cn)|[晋城职业技术学院](http://www.sxjczy.com.cn)|[山西警官职业学院](http://www.sxpolice.cn/)|[山西机电职业技术学院](http://www.sxjdxy.org/)| 722 | |[太原城市职业技术学院](http://www.cntcvc.com/)|[山西生物应用职业技术学院](http://www.sxbac.net.cn)|[山西经贸职业学院](http://www.sxemc.com)|[山西水利职业技术学院](http://www.sxsy.com.cn)|[山西金融职业学院](http://www.sxjrzyxy.com)| 723 | |[山西职业技术学院](http://www.sxzzy.cn)|[太原旅游职业学院](http://www.tylyzyxy.com)|[山西国际商务职业学院](http://www.sxibs.com)|[山西老区职业技术学院](http://www.sxlqzy.cn)|[山西同文职业技术学院](http://www.sxtwedu.com)| 724 | |[山西体育职业学院](http://www.sxptc.com)|[山西戏剧职业学院](http://www.shanxixjxy.com)|[山西财贸职业技术学院](http://www.sxcmvc.com/)|[山西林业职业技术学院](http://www.sxly.com.cn)|[山西华澳商贸职业学院](http://www.huaao.sx.cn)| 725 | |[晋中职业技术学院](http://www.jzzy.sx.cn)|[山西运城农业职业技术学院](http://www.sycnxy.com)|[朔州职业技术学院](http://www.szvtc.com/)|[晋中师范高等专科学校](http://www.sxjzsf.cn)|[阳泉师范高等专科学校](http://www.sxyqsz.cn)| 726 | |[山西大学商务学院](http://www.sdsy.sxu.edu.cn)|[太原理工大学现代科技学院](http://www.xdkj.tyut.edu.cn)|[山西农业大学信息学院](http://www.cisau.com.cn)|[山西师范大学现代文理学院](http://www.sxnu.edu.cn/change/xyxs/xdwlxy/index.htm)|[中北大学信息商务学院](http://xxsw.nuc.edu.cn/)| 727 | |[太原科技大学华科学院](http://www.kdhk.cn)|[山西医科大学晋祠学院](http://www.sxmu-jcc.com)|[山西财经大学华商学院](http://www.schsxy.com)|[山西中医药大学](https://www.sxtcm.edu.cn/)|[太原学院](http://www.tyu.edu.cn/)| 728 | |[山西警察学院](http://www.sxpc.edu.cn/)|[山西应用科技学院](http://www.sxxh.org/)|[运城职业技术大学](http://www.ycptu.edu.cn/)|[山西传媒学院](http://www.arft.net/)|[山西工程技术学院](http://www.sxit.edu.cn/)| 729 | |[山西能源学院](http://sxnyxy.bysjy.com.cn/)|[山西药科职业学院](http://www.sxbac.net.cn/)|[山西青年职业学院](http://www.sxqzy.cn/)|[运城护理职业学院](https://www.ychlxy.com/)|[运城师范高等专科学校](http://www.sxycsf.com/)| 730 | |[朔州师范高等专科学校](http://www.shuozhou.gov.cn/ztjs/szszz/)|[吕梁职业技术学院](http://www.llzy.net/)|[山西卫生健康职业学院](http://www.sxhvc.com/)||| 731 | 732 | 733 | ### 甘肃 734 | 735 | > 总数: 60 736 | 737 | |||||| 738 | |-|-|-|-|-| 739 | |[兰州大学](http://www.lzu.edu.cn)|[西北民族大学](http://www.xbmu.edu.cn)|[兰州理工大学](http://www.lut.cn)|[兰州交通大学](http://www.lzjtu.edu.cn)|[甘肃农业大学](http://www.gsau.edu.cn)| 740 | |[西北师范大学](http://www.nwnu.edu.cn)|[甘肃中医学院](http://www.gszy.edu.cn)|[陇东学院](http://www.ldxy.edu.cn)|[天水师范学院](http://www.tsnc.edu.cn)|[兰州商学院](http://www.lzcc.edu.cn)| 741 | |[甘肃政法学院](http://www.gsli.edu.cn)|[兰州城市学院](http://www.lzcu.edu.cn)|[河西学院](http://www.hxu.edu.cn)|[甘肃民族师范学院](http://www.gnun.edu.cn)|[兰州工业高等专科学校](http://www.lzptc.edu.cn)| 742 | |[平凉医学高等专科学校](http://www.plmc.edu.cn)|[张掖医学高等专科学校](http://www.zymc.edu.cn)|[陇南师范高等专科学校](http://www.lntc.edu.cn)|[定西师范高等专科学校](http://www.dxatc.cn)|[甘肃联合大学](http://www.gsu.edu.cn)| 743 | |[兰州石化职业技术学院](http://www.lzpcc.com.cn)|[兰州外语职业学院](http://www.lzwyedu.com)|[甘肃交通职业技术学院](http://www.gsjtxy.edu.cn)|[武威职业学院](http://www.wwoc.cn)|[甘肃工业职业技术学院](http://www.gsipc.gsedu.cn)| 744 | |[酒泉职业技术学院](http://www.jqzy.com)|[甘肃警察职业学院](http://www.gs-police.com)|[甘肃建筑职业技术学院](http://www.gcvtc.gsedu.cn)|[甘肃林业职业技术学院](http://www.gsfc.edu.cn)|[兰州资源环境职业技术学院](http://www.lzre.edu.cn)| 745 | |[兰州职业技术学院](http://www.lvu.edu.cn)|[甘肃畜牧工程职业技术学院](http://www.xmgcxy.gsedu.cn)|[甘肃钢铁职业技术学院](http://60.164.184.47)|[甘肃农业职业技术学院](http://www.gnzy.gssedu.cn)|[甘肃机电职业技术学院](http://www.gsjdxy.com)| 746 | |[西北师范大学知行学院](http://zxxy.nwnu.edu.cn)|[兰州商学院陇桥学院](http://www.lzlqc.com)|[兰州交通大学博文学院](http://www.bowenedu.cn)|[兰州商学院长青学院](http://222.23.176.254)|[兰州理工大学技术工程学院](http://www.lutcte.cn)| 747 | |[甘肃中医药大学](http://www.gszy.edu.cn/)|[兰州财经大学](http://www.lzufe.edu.cn/)|[甘肃政法大学](http://gsli.fanya.chaoxing.com/)|[兰州文理学院](https://www.luas.edu.cn/)|[甘肃医学院](http://www.plmc.edu.cn/)| 748 | |[兰州工业学院](https://www.lzit.edu.cn/)|[兰州财经大学陇桥学院](http://www.lzlqc.com/)|[兰州财经大学长青学院](http://changqing.lzufe.edu.cn/)|[甘肃有色冶金职业技术学院](https://www.gsysyj.org/)|[白银矿冶职业技术学院](http://www.bymu.cn/)| 749 | |[甘肃卫生职业学院](http://www.gswx.com.cn/)|[兰州科技职业学院](http://www.lzkjedu.com/)|[庆阳职业技术学院](http://www.qyvtc.com/)|[临夏现代职业学院](http://www.lxxdzy.com/)|[甘肃能源化工职业学院](https://www.gsnh.edu.cn/)| 750 | |[兰州现代职业学院](https://lzmvc.edu.cn/)|[平凉职业技术学院](http://www.plvtc.cn/)|[培黎职业学院](http://www.plzyxy.com/)|[甘肃财贸职业学院](http://www.gscmxy.edu.cn/)|[甘肃电大](http://www.gsrtvu.edu.cn/)| 751 | 752 | 753 | ### 宁夏 754 | 755 | > 总数: 22 756 | 757 | |||||| 758 | |-|-|-|-|-| 759 | |[宁夏大学](http://www.nxu.edu.cn)|[北方民族大学](http://www.nwsni.edu.cn)|[宁夏医科大学](http://www.nxmu.edu.cn/)|[宁夏理工学院](http://www.nxist.com)|[宁夏师范学院](http://www.nxtu.cn)| 760 | |[宁夏民族职业技术学院](http://www.nxmzy.com)|[宁夏工商职业技术学院](http://www.nxjm.com)|[宁夏工业职业学院](http://61.133.209.245/)|[宁夏职业技术学院](http://www.nxtc.edu.cn)|[宁夏建设职业技术学院](http://www.nxjy.edu.cn)| 761 | |[宁夏财经职业技术学院](http://www.nxcy.edu.cn)|[宁夏司法警官职业学院](http://www.nsjy.com.cn)|[银川科技职业学院](http://www.ycu.com.cn)|[宁夏大学新华学院](http://xinhua.nxu.edu.cn)|[中国矿业大学银川学院](http://www.cumtyc.com.cn)| 762 | |[银川能源学院](http://www.ycu.com.cn/)|[宁夏警官职业学院](http://www.nsjy.com.cn/)|[宁夏葡萄酒与防沙治沙职业技术学院](http://www.nxfszs.cn/)|[宁夏幼儿师范高等专科学校](http://www.nxpec.edu.cn/)|[宁夏艺术职业学院](http://www.nxtc.edu.cn/)| 763 | |[宁夏体育职业学院](http://www.nxty.edu.cn/)|[石嘴山工贸职业技术学院](http://www.nxszsgm.com/)|||| 764 | 765 | 766 | ### 河北 767 | 768 | > 总数: 149 769 | 770 | |||||| 771 | |-|-|-|-|-| 772 | |[河北大学](http://www.hbu.edu.cn)|[河北经贸大学](http://www.heuet.edu.cn)|[燕山大学](http://www.ysu.edu.cn)|[河北联合大学](http://www.heut.edu.cn)|[河北科技大学](http://www.hebust.edu.cn)| 773 | |[河北工程大学](http://www.hebeu.edu.cn)|[河北农业大学](http://www.hebau.edu.cn)|[河北医科大学](http://www.hebmu.edu.cn)|[河北师范大学](http://www.hebtu.edu.cn)|[河北美术学院](http://www.hbafa.com)| 774 | |[中国人民武装警察部队学院](http://www.wjxy.edu.cn)|[中央司法警官学院](http://www.cicp.edu.cn)|[防灾科技学院](http://www.fzxy.edu.cn)|[华北科技学院](http://www.ncist.edu.cn)|[石家庄铁道大学](http://www.stdu.edu.cn)| 775 | |[河北建筑工程学院](http://www.hebiace.edu.cn)|[北华航天工业学院](http://www.nciae.edu.cn)|[石家庄经济学院](http://www.sjzue.edu.cn)|[承德医学院](http://www.cdmc.edu.cn)|[河北科技师范学院](http://www.hevttc.edu.cn)| 776 | |[邢台学院](http://www.xttc.edu.cn)|[廊坊师范学院](http://www.lfsfxy.org.cn)|[唐山师范学院](http://www.tstc.edu.cn)|[河北金融学院](http://www.hbcf.edu.cn)|[河北体育学院](http://www.hepec.edu.cn)| 777 | |[河北传媒学院](http://www.hebic.cn)|[石家庄学院](http://www.sjzc.edu.cn)|[保定学院](http://www.bdu.edu.cn)|[衡水学院](http://www.hsnc.edu.cn)|[唐山学院](http://www.tsc.edu.cn)| 778 | |[河北北方学院](http://www.hebeinu.edu.cn)|[邯郸学院](http://www.hdc.edu.cn)|[河北民族师范学院](http://www.hbun.net)|[沧州师范学院](http://www.caztc.edu.cn)|[河北科技学院](http://www.hbkjxy.cn)| 779 | |[河北工程技术高等专科学校](http://www.hbgz.edu.cn)|[石家庄幼儿师范专科学校](http://www.hbyesf.com)|[河北化工医药职业技术学院](http://www.hebcpc.cn)|[河北能源职业技术学院](http://www.hbnyxy.cn)|[河北工业职业技术学院](http://www.hbcit.edu.cn)| 780 | |[河北女子职业技术学院](http://www.hebnzxy.com)|[河北建材职业技术学院](http://www.hbjcxy.com)|[河北软件职业技术学院](http://www.hbsi.com.cn)|[河北外国语职业学院](http://www.hbvcfl.com.cn)|[河北政法职业学院](http://www.helc.edu.cn)| 781 | |[河北机电职业技术学院](http://www.hbjd.com.cn)|[河北劳动关系职业学院](http://www.hbgy.edu.cn)|[河北司法警官职业学院](http://www.jjgxy.com.cn)|[河北公安警察职业学院](http://www.hebsjy.com)|[河北石油职业技术学院](http://www.pvtc.edu.cn)| 782 | |[河北交通职业技术学院](http://www.hejtxy.edu.cn)|[河北旅游职业学院](http://www.cdtvc.com)|[河北艺术职业学院](http://www.hebart.com)|[石家庄财经职业学院](http://www.sjzcj.edu.cn)|[石家庄外语翻译职业学院](http://www.hbwy.com.cn)| 783 | |[石家庄外事职业学院](http://www.wsxy.net)|[石家庄科技信息职业学院](http://www.kjxinxiedu.com)|[石家庄信息工程职业学院](http://www.sjziei.com)|[石家庄人民医学高等专科学校](http://www.sjzrmyz.com)|[石家庄医学高等专科学校](http://www.sjzmc.cn)| 784 | |[邢台医学高等专科学校](http://www.xtmc.net)|[石家庄铁路职业技术学院](http://www.sirt.edu.cn)|[石家庄职业技术学院](http://www.sjzpt.edu.cn)|[石家庄邮电职业技术学院](http://www.sjzpc.edu.cn)|[石家庄工程职业学院](http://www.sjzcvc.com)| 785 | |[石家庄工商职业学院](http://www.sjzgsxy.com)|[石家庄科技职业学院](http://www.sjzkjxy.net)|[石家庄科技工程职业学院](http://www.zdsf.net)|[石家庄外国语职业学院](http://www.sjzwgyxy.com)|[石家庄城市职业学院](http://www.hbfsh.com)| 786 | |[石家庄理工职业学院](http://61.182.226.208)|[保定职业技术学院](http://www.bvtc.com.cn)|[保定电力职业技术学院](http://www.bddy.cn)|[沧州医学高等专科学校](http://www.czmc.cn)|[沧州职业技术学院](http://www.czvtc.cn)| 787 | |[承德石油高等专科学校](http://www.cdpc.edu.cn)|[承德护理职业学院](http://www.cdwx.cn)|[唐山科技职业技术学院](http://www.tskjzy.cn)|[唐山工业职业技术学院](http://www.tsgzy.edu.cn)|[唐山职业技术学院](http://www.tsvtc.com)| 788 | |[廊坊职业技术学院](http://www.lfzhjxy.net)|[廊坊东方职业技术学院](http://www.dfzy.edu.cn)|[廊坊燕京职业技术学院](http://www.lfyjzjxy.com)|[邢台职业技术学院](http://www.xtvtc.net)|[邯郸职业技术学院](http://www.hd-u.com)| 789 | |[张家口职业技术学院](http://www.zhz.cn)|[冀中职业学院](http://www.jzhxy.com)|[渤海石油职业学院](http://www.bhsyxy.com)|[宣化科技职业学院](http://www.xhkjzyxy.com)|[泊头职业学院](http://www.btzyxy.com.cn)| 790 | |[衡水职业技术学院](http://www.hsvtc.cn)|[秦皇岛职业技术学院](http://www.qhdvtc.com)|[河北联合大学轻工学院](http://qgxy.heut.edu.cn)|[河北工程大学科信学院](http://kexin.hebeu.edu.cn)|[华北电力大学科技学院](http://www.hdky.edu.cn)| 791 | |[河北科技大学理工学院](http://hbklg.hebust.edu.cn)|[河北大学工商学院](http://www.hicc.cn)|[河北师范大学汇华学院](http://huihua.hebtu.edu.cn)|[河北医科大学临床学院](http://202.206.48.102)|[河北经贸大学经济管理学院](http://202.206.206.251)| 792 | |[河北工业大学城市学院](http://cc.hebut.edu.cn)|[燕山大学里仁学院](http://stc.ysu.edu.cn)|[石家庄铁道大学四方学院](http://www.stdusfc.cn)|[石家庄经济学院华信学院](http://www2.sjzue.edu.cn/sjyhx)|[河北农业大学现代科技学院](http://xianke.hebau.edu.cn)| 793 | |[河北联合大学冀唐学院](http://jtxy.heuu.edu.cn)|[中国地质大学长城学院](http://www.cuggw.com)|[北京化工大学北方学院](http://www.ncbuct.com)|[北京中医药大学东方学院](http://www.df-college.com)|[北京交通大学海滨学院](http://www.bjtuhbxy.cn)| 794 | |[河北地质大学](http://www.hgu.edu.cn/)|[河北工业大学](https://www.hebut.edu.cn/)|[华北理工大学](http://www.ncst.edu.cn/)|[河北水利电力学院](http://www.hbwe.edu.cn/)|[中国人民警察大学](http://www.cppu.edu.cn/)| 795 | |[河北工程技术学院](http://www.hbfsh.com/)|[河北外国语学院](http://www.hbwgyxy.com/)|[华北理工大学轻工学院](http://www.qgxy.cn)|[河北地质大学华信学院](http://www.sjzuehx.cn/)|[华北理工大学冀唐学院](http://jtxy.ncst.edu.cn/)| 796 | |[保定理工学院](http://www.cuggw.com/)|[燕京理工学院](http://www.yit.edu.cn/)|[河北东方学院](http://www.hbdfxy.cn/)|[河北中医学院](http://www.hebcm.edu.cn/)|[张家口学院](http://www.zjku.edu.cn/)| 797 | |[河北环境工程学院](https://www.hebuee.edu.cn/)|[石家庄城市经济职业学院](http://www.sjzcsjjxy.com/)|[河北对外经贸职业学院](http://www.hbiibe.edu.cn/)|[石家庄经济职业学院](http://www.sjzjjxy.com/)|[石家庄幼儿师范高等专科学校](http://www.sjzysgz.com/)| 798 | |[廊坊卫生职业学院](http://www.lfwx.net/default.html)|[河北轨道运输职业技术学院](http://www.hbgdys.cn/)|[保定幼儿师范高等专科学校](http://www.hezs.cn/)|[河北工艺美术职业学院](http://www.hbgymszyxy-edu.cn/)|[渤海理工职业学院](http://www.bhlgxy.com/)| 799 | |[唐山幼儿师范高等专科学校](http://www.tsyzh.com/)|[曹妃甸职业技术学院](http://www.cct.edu.cn/)|[承德应用技术职业学院](http://www.cdyyjszyxy.cn/index.html)|[邯郸幼儿师范高等专科学校](http://www.wuantc.com/)|[邯郸科技职业学院](http://www.hdnyxx.com/hdkjzyxy/index.html)| 800 | |[唐山海运职业学院](http://www.tmi.edu.cn/)|[华北电力大学](http://www.ncepu.edu.cn/)|[河北理工大学](http://www.heut.edu.cn/)|[华北煤炭医学院](http://www.ncmc.edu.cn/)|[东北大学秦皇岛分校](http://www.neuq.edu.cn/)| 801 | |[石家庄铁道学院](http://www.sjzri.edu.cn/)|[石家庄计算机职业学院](http://www.sjzcvc.com/)|[河北广播电视大学](http://www.hebnetu.edu.cn/)|[承德民族师范高等专科学校](http://www.hbun.net/)|| 802 | 803 | 804 | ### 四川 805 | 806 | > 总数: 152 807 | 808 | |||||| 809 | |-|-|-|-|-| 810 | |[四川大学](http://www.scu.edu.cn)|[西南交通大学](http://www.swjtu.edu.cn)|[电子科技大学](http://www.uestc.edu.cn)|[西南财经大学](http://www.swufe.edu.cn)|[西南民族大学](http://www.swun.edu.cn)| 811 | |[成都理工大学](http://www.cdut.edu.cn)|[西华大学](http://www.xhu.edu.cn)|[西南科技大学](http://www.swust.edu.cn)|[四川农业大学](http://www.sicau.edu.cn)|[成都中医药大学](http://www.cdutcm.edu.cn)| 812 | |[四川师范大学](http://www.sicnu.edu.cn)|[西华师范大学](http://www.cwnu.edu.cn)|[中国民用航空飞行学院](http://www.cafuc.edu.cn)|[西南石油大学](http://www.swpu.edu.cn)|[四川理工学院](http://www.sasu.edu.cn/main.asp)| 813 | |[成都信息工程学院](http://www.cuit.edu.cn)|[泸州医学院](http://www.lzmc.edu.cn)|[川北医学院](http://www.nsmc.edu.cn)|[成都医学院](http://www.cmc.edu.cn)|[乐山师范学院](http://www.lstc.net)| 814 | |[四川文理学院](http://www.sasu.edu.cn)|[内江师范学院](http://www.njtc.edu.cn)|[四川警察学院](http://www.scpolicec.edu.cn/Index/)|[成都体育学院](http://www.cdsu.edu.cn)|[四川音乐学院](http://www.sccm.cn)| 815 | |[四川民族学院](http://www.scun.edu.cn)|[绵阳师范学院](http://www.mnu.cn/)|[宜宾学院](http://www.yibinu.cn)|[攀枝花学院](http://www.pzhu.edu.cn)|[成都学院](http://www.cdu.edu.cn)| 816 | |[西昌学院](http://www.xcc.sc.cn)|[成都东软学院](http://www.ccniit.com)|[成都纺织高等专科学校](http://www.cdtc.edu.cn)|[四川烹饪高等专科学校](http://www.shic.edu.cn/)|[成都电子机械高等专科学校](http://www.cec.edu.cn)| 817 | |[四川中医药高等专科学校](http://www.scctcm.cn)|[阿坝师范高等专科学校](http://www.abtc.edu.cn/)|[四川天一学院](http://www.tianyi.org)|[成都航空职业技术学院](http://www.cavtc.net)|[四川建筑职业技术学院](http://www.scatc.net)| 818 | |[四川职业技术学院](http://www.scvtc.com)|[泸州职业技术学院](http://www.lzy.edu.cn)|[广安职业技术学院](http://www.gavtc.cn/)|[四川商务职业学院](http://www.scsw.net.cn)|[四川工程职业技术学院](http://www.scetc.net)| 819 | |[四川电力职业技术学院](http://www.kc.sc.sgcc.com.cn/www)|[四川邮电职业技术学院](http://www.sptpc.com)|[四川工商职业技术学院](http://www.sctbc.net)|[四川警安职业学院](http://www.scjavc.cn)|[达州职业技术学院](http://www.dzzjy.com)| 820 | |[四川交通职业技术学院](http://221.237.163.247/)|[四川机电职业技术学院](http://www.scemi.com)|[四川科技职业学院](http://www.scstc.cn)|[绵阳职业技术学院](http://www.myvtc.edu.cn)|[四川信息职业技术学院](http://www.scitc.com.cn)| 821 | |[四川航天职业技术学院](http://www.sacvt.com)|[四川化工职业技术学院](http://www.sccvtc.cn)|[四川水利职业技术学院](http://www.swcvc.net.cn)|[四川文化传媒职业学院](http://www.svccc.net)|[四川管理职业学院](http://www.scmpi.cn)| 822 | |[四川华新现代职业学院](http://www.schxmvc.com)|[南充职业技术学院](http://www.nczy.com)|[成都职业技术学院](http://www.cdvtc.com/)|[眉山职业技术学院](http://www.msvtc.net)|[四川司法警官职业学院](http://www.sjpopc.net)| 823 | |[四川国际标榜职业学院](http://pivotpoint.edu.cn/)|[成都农业科技职业学院](http://www.cdnkxy.com)|[宜宾职业技术学院](http://www.ybzy.cn)|[雅安职业技术学院](http://www.yazjy.com)|[乐山职业技术学院](http://www.lszyxy.com)| 824 | |[成都艺术职业学院](http://www.cdartpro.cn/)|[四川托普信息技术职业学院](http://www.scetop.com)|[内江职业技术学院](http://www.njvtc.cn)|[四川文化产业职业学院](http://www.scvcci.cn)|[四川艺术职业学院](http://www.scapi.cn)| 825 | |[四川财经职业学院](http://www.scpcfe.cn)|[四川城市职业学院](http://www.scuvc.com)|[四川现代职业学院](http://www.scmvc.cn)|[四川幼儿师范高等专科学校](http://www.scyesz.com/)|[成都理工大学工程技术学院](http://www.cdutetc.cn)| 826 | |[成都理工大学广播影视学院](http://www.cdysxy.com)|[成都信息工程学院银杏酒店管理学院](http://www.yihms.com)|[四川师范大学文理学院](http://www.scnucas.com)|[四川师范大学成都学院](http://www.cdxy.edu.cn)|[四川外语学院成都学院](http://www.cisisu.edu.cn)| 827 | |[电子科技大学成都学院](http://www.gtsoft.com.cn)|[四川大学锦城学院](http://www.scujcc.com.cn)|[西南科技大学城市学院](http://www.ccswust.com.cn)|[四川音乐学院绵阳艺术学院](http://www.cymyadc.com)|[四川大学锦江学院](http://www.scujj.com)| 828 | |[西南财经大学天府学院](http://www.tf-swufe.net)|[西南交通大学希望学院](http://www.swjtuhc.cn)|[成都信息工程大学](http://www.cuit.edu.cn/)|[四川轻化工大学](http://www.suse.edu.cn/)|[西南医科大学](https://www.swmu.edu.cn/)| 829 | |[阿坝师范学院](http://www.abtu.edu.cn/)|[成都大学](https://www.cdu.edu.cn/)|[成都工业学院](http://www.cdtu.edu.cn/)|[四川旅游学院](http://www.sctu.edu.cn/)|[成都艺术职业大学](http://www.cdartpro.cn/)| 830 | |[四川传媒学院](http://www.scmc.edu.cn/)|[成都银杏酒店管理学院](http://www.yxhmc.edu.cn/)|[成都文理学院](http://www.scnucas.com/)|[四川工商学院](https://www.stbu.edu.cn/)|[四川外国语大学成都学院](https://www.cisisu.edu.cn/)| 831 | |[四川工业科技学院](http://www.scit.cn/)|[四川文化艺术学院](http://www.sca.edu.cn/)|[成都师范学院](http://www.cdnu.edu.cn/)|[四川电影电视学院](http://www.scftvc.com/)|[吉利学院](http://cd.guc.edu.cn/)| 832 | |[民办四川天一学院](http://www.tianyi.edu.cn/)|[四川铁道职业学院](http://www.scvir.com/)|[四川长江职业学院](http://www.sccvc.com/)|[四川三河职业学院](http://zsxx.scshpc.com/)|[川北幼儿师范高等专科学校](http://www.cbyz.edu.cn/)| 833 | |[四川卫生康复职业学院](http://www.svchr.edu.cn/)|[四川汽车职业技术学院](http://www.scavtc.com/)|[巴中职业技术学院](https://www.bzzyjsxy.cn/)|[四川希望汽车职业学院](http://www.qicheedu.com/)|[四川电子机械职业技术学院](http://www.scemvtc.com/)| 834 | |[四川文轩职业学院](https://www.scwxzyxy.cn/)|[川南幼儿师范高等专科学校](http://www.cnyz.edu.cn/)|[四川护理职业学院](http://www.cnsnvc.com/)|[成都工业职业技术学院](https://www.cdivtc.edu.cn/)|[四川西南航空职业学院](http://www.xnhkxy.edu.cn/)| 835 | |[成都工贸职业技术学院](https://www.cdgmxy.edu.cn/)|[四川应用技术职业学院](http://www.sccas.edu.cn/)|[西昌民族幼儿师范高等专科学校](http://www.xcmzyz.com/)|[眉山药科职业学院](http://www.msykxy.cn/)|[天府新区信息职业学院](http://www.tficedu.com/)| 836 | |[德阳城市轨道交通职业学院](http://www.dcurt.cn/)|[德阳科贸职业学院](http://www.dvctt.com/)|[江阳城建职业学院](http://www.jyccc.cn/)|[天府新区航空旅游职业学院](http://www.tfhk.edu.cn:81/)|[天府新区通用航空职业学院](http://www.ausedu.cn/)| 837 | |[阿坝职业学院](http://www.abzyxy.cn/)|[达州中医药职业学院](http://www.dzcmc.com/)|[内江卫生与健康职业学院](http://njnhvc.com/)|[南充科技职业学院](http://www.nstc.edu.cn/)|[攀枝花攀西职业学院](http://www.pzhpxzyxy.com/)| 838 | |[资阳口腔职业学院](https://www.zykqxy.com/)|[资阳环境科技职业学院](http://www.sczest.cn/)|[南充文化旅游职业学院](https://www.ncvcct.com/)|[绵阳飞行职业学院](http://www.topflying.com.cn/)|[德阳农业科技职业学院](http://www.dynky.cn/)| 839 | |[泸州医疗器械职业学院](http://www.lzylqx.cn/)|[广元中核职业技术学院](https://www.nivtc.com/)|[四川体育职业学院](https://www.scscedu.net.cn/)|[阿坝师专](http://www.abtc.sc.cn/)|[中国民航飞行学院](http://www.cafuc.edu.cn/)| 840 | |[四川教育学院](http://www.scie.cn/)|[四川师范大学外事学院](http://www.snuic.com/)|||| 841 | 842 | 843 | ### 重庆 844 | 845 | > 总数: 79 846 | 847 | |||||| 848 | |-|-|-|-|-| 849 | |[重庆大学 ](http://www.cqu.edu.cn)|[西南大学](http://www.swu.edu.cn)|[重庆交通大学](http://www.cquc.edu.cn)|[重庆邮电大学](http://www.cqupt.edu.cn)|[重庆医科大学](http://www.cqmu.edu.cn)| 850 | |[重庆师范大学](http://www.cqnu.edu.cn)|[重庆工商大学](http://www.ctbu.edu.cn)|[西南政法大学](http://www.swupl.edu.cn)|[重庆科技学院](http://www.cqust.cn)|[重庆理工大学](http://www.cqut.edu.cn/)| 851 | |[长江师范学院](http://www.yznu.cn)|[四川外语学院](http://www.sisu.edu.cn)|[四川美术学院](http://www.scfai.edu.cn)|[重庆三峡学院](http://www.sanxiau.net)|[重庆文理学院](http://www.cqwu.net)| 852 | |[重庆电力高等专科学校](http://www.cqepc.com.cn)|[重庆医药高等专科学校](http://www.cqyygz.com)|[重庆三峡医药高等专科学校](http://www.sxyyc.net)|[重庆电子工程职业学院](http://www.cqcet.com)|[重庆工业职业技术学院](http://www.cqipc.net)| 853 | |[重庆水利电力职业技术学院](http://www.cqslzy.com)|[重庆工商职业学院](http://www.cqtbi.edu.cn)|[重庆民生职业技术学院](http://www.cqms.edu.cn/)|[重庆房地产职业学院](http://www.cqbyxy.com)|[重庆城市管理职业学院](http://www.cswu.cn/)| 854 | |[重庆信息技术职业学院](http://www.cqeec.com)|[重庆警官职业学院](http://www.cqjy.com.cn)|[重庆城市职业学院](http://www.cqcvc.com.cn)|[重庆工程职业技术学院](http://www.cqvie.edu.cn/)|[重庆青年职业技术学院](http://www.cqqzy.cn)| 855 | |[重庆机电职业技术学院](http://www.cqevi.net.cn/)|[重庆正大软件职业技术学院](http://www.zdsoft.com.cn)|[重庆航天职业技术学院](http://www.cqepc.cn)|[重庆三峡职业学院](http://www.cqsxedu.com)|[重庆工贸职业技术学院](http://www.cqgmy.cn)| 856 | |[重庆海联职业技术学院](http://www.cqhl.net.cn)|[重庆财经职业学院](http://www.cqcfe.com)|[重庆科创职业学院](http://www.cqie.cn)|[重庆建筑工程职业学院](http://www.cctc.cq.cn)|[重庆传媒职业学院](http://cqcmxy.com:81/)| 857 | |[重庆电讯职业学院](http://bmw021187.chinaw3.com/)|[重庆能源职业学院](http://www.cqny.net)|[重庆商务职业学院](http://www.cqswxy.cn/index.php)|[重庆交通职业学院](http://www.cqjky.com)|[重庆旅游职业学院](http://www.cqvit.com)| 858 | |[重庆化工职业学院](http://www.cqhgzy.com)|[西南大学育才学院](http://www.swuyc.edu.cn)|[四川外语学院重庆南方翻译学院](http://www.tcsisu.com)|[重庆师范大学涉外商贸学院](http://www.swsm.cn)|[重庆工商大学融智学院](http://www.cqrz.edu.cn/)| 859 | |[重庆工商大学派斯学院](http://paisi.ctbu.edu.cn/Article/ShowClass.asp?ClassID=10)|[重庆邮电大学移通学院](http://www.cqyti.com/)|[重庆大学城市科技学院](http://www.cqucc.com.cn)|[重庆教育学院](http://www.cqec.net.cn/)|[重庆大学](http://www.cqu.edu.cn/)| 860 | |[四川外国语大学](http://www.sisu.edu.cn/)|[重庆机电职业技术大学](http://www.cqevi.net.cn/)|[重庆工程学院](http://www.cqie.edu.cn/)|[重庆警察学院](http://www.cqpc.edu.cn/)|[重庆人文科技学院](http://www.cqrk.edu.cn/)| 861 | |[四川外国语大学重庆南方翻译学院](http://www.tcsisu.com/)|[重庆第二师范学院](http://www.cque.edu.cn/)|[重庆建筑科技职业学院](http://www.cqrec.edu.cn/)|[重庆应用技术职业学院](http://www.cqyyzy.com/)|[重庆安全技术职业学院](https://www.cqvist.net/)| 862 | |[重庆公共运输职业学院](http://www.cqgyzy.com/)|[重庆艺术工程职业学院](http://www.cqysxy.com/)|[重庆轻工职业学院](http://www.cqivc.com/)|[重庆电信职业学院](http://www.cqtcedu.com/)|[重庆经贸职业学院](http://www.cqvcet.com/)| 863 | |[重庆幼儿师范高等专科学校](http://www.cqpec.com/)|[重庆文化艺术职业学院](http://www.cqca.edu.cn/)|[重庆科技职业学院](http://www.cqkjzyxy.com/)|[重庆资源与环境保护职业学院](http://www.cqzhxy.com/)|[重庆护理职业学院](https://www.cqnvc.com/)| 864 | |[重庆理工职业学院](http://www.cqip.com.cn/)|[重庆智能工程职业学院](https://www.cqai.vip/)|[重庆健康职业学院](http://www.cqhve.cn/)|[第三军医大学](http://www.tmmu.com.cn/)|| 865 | 866 | 867 | ### 西藏 868 | 869 | > 总数: 9 870 | 871 | |||||| 872 | |-|-|-|-|-| 873 | |[西藏大学](http://www.utibet.edu.cn)|[西藏藏医学院](http://www.ttmc.edu.cn)|[西藏民族学院](http://www.xzmy.edu.cn)|[拉萨师范高等专科学校](http://www.xzlssf.org)|[西藏警官高等专科学校](http://www.tpa.net.cn)| 874 | |[西藏职业技术学院](http://www.xzgzy.cn)|[西藏农牧学院](http://www.xza.edu.cn/)|[西藏民族大学](http://www.xzmu.edu.cn/)|[西藏藏医药大学](http://www.ttmc.edu.cn/)|| 875 | 876 | 877 | ### 青海 878 | 879 | > 总数: 13 880 | 881 | |||||| 882 | |-|-|-|-|-| 883 | |[青海大学](http://www.qhu.edu.cn)|[青海师范大学](http://www.qhnu.edu.cn)|[青海民族大学](http://www.qhmu.edu.cn)|[青海畜牧兽医职业技术学院](http://www.qhxmzy.com.cn)|[青海卫生职业技术学院](http://www.qhwszy.edu.cn)| 884 | |[青海交通职业技术学院](http://www.qhctc.edu.cn/)|[青海建筑职业技术学院](http://www.qhnews.com/bdt/jt/jzxy/)|[青海警官职业学院](http://www.qhjyedu.com/structure/)|[青海大学昆仑学院](http://www.klxy.com.cn/)|[西宁城市职业技术学院](http://www.xncsxy.cn/)| 885 | |[青海高等职业技术学院](http://www.qhgzy.com/)|[青海柴达木职业技术学院](http://www.qhcdmzy.com.cn/)|[青海大学医学院](http://www.qhmc.edu.cn/)||| 886 | 887 | 888 | ### 内蒙古 889 | 890 | > 总数: 58 891 | 892 | |||||| 893 | |-|-|-|-|-| 894 | |[内蒙古大学](http://www.imu.edu.cn)|[内蒙古科技大学](http://www.imust.cn)|[内蒙古民族大学](http://www.imun.edu.cn)|[内蒙古工业大学](http://www.imut.edu.cn)|[内蒙古农业大学](http://www.imau.edu.cn)| 895 | |[内蒙古师范大学](http://www.imnu.edu.cn)|[内蒙古医学院](http://www.immc.edu.cn)|[呼伦贝尔学院](http://www.hlbrc.cn)|[呼和浩特民族学院](http://www.imnc.edu.cn)|[赤峰学院](http://www.cfxy.cn)| 896 | |[集宁师范学院](http://www.jnsz.nm.cn)|[内蒙古财经学院](http://www.imfec.edu.cn)|[乌兰察布医学高等专科学校](http://www.wlcbswx.com)|[河套大学](http://www.hetaodaxue.com)|[包头职业技术学院](http://www.btzyjsxy.cn)| 897 | |[内蒙古建筑职业技术学院](http://www.imaa.edu.cn)|[乌海职业技术学院](http://www.whvtc.net)|[包头钢铁职业技术学院](http://www.btsvc.net/)|[科尔沁艺术职业学院](http://www.keqysxy.com.cn)|[包头铁道职业技术学院](http://www.bttzy.com/)| 898 | |[内蒙古商贸职业学院](http://www.nmsmxy.com)|[鄂尔多斯职业学院](http://www.ordosvc.cn)|[内蒙古交通职业技术学院](http://www.nmjtzy.com)|[内蒙古机电职业技术学院](http://www.nmgjdxy.com)|[内蒙古科技职业学院](http://www.imstu.org.cn)| 899 | |[内蒙古电子信息职业技术学院](http://www.imeic.cn/)|[锡林郭勒职业学院](http://www.xlglvc.cn)|[呼和浩特职业学院](http://www.hhvc.net.cn)|[包头轻工职业技术学院](http://www.btqy.com.cn)|[乌兰察布职业学院](http://www.wlcbzyxy.com.cn)| 900 | |[通辽职业学院](http://www.tlzyxy.com)|[内蒙古化工职业学院](http://www.hgzyxy.com.cn)|[内蒙古经贸外语职业学院](http://www.nmgjwy.com)|[赤峰职业技术学院](http://www.cfzyjsxy.com)|[内蒙古北方职业技术学院](http://www.nmbfxy.com)| 901 | |[兴安职业技术学院](http://www.nmxzy.cn)|[内蒙古体育职业学院](http://www.nmtyxy.com)|[内蒙古警察职业学院](http://www.imppc.cn)|[内蒙古丰州职业学院](http://www.qcdx.net)|[呼伦贝尔职业技术学院](http://www.hlbrzy.com)| 902 | |[满洲里俄语职业学院](http://ey.mzlxy.cn)|[内蒙古工业职业学院](http://www.nmxuanyuan.cn)|[内蒙古大学创业学院](http://www.imuchuangye.cn)|[内蒙古师范大学鸿德学院](http://www.honder.com)|[内蒙古医科大学](https://www.immu.edu.cn/)| 903 | |[内蒙古财经大学](https://www.imufe.edu.cn/)|[河套学院](http://www.hetaodaxue.com/)|[内蒙古鸿德文理学院](http://www.honder.com/)|[内蒙古艺术学院](http://www.imac.edu.cn/)|[鄂尔多斯应用技术学院](http://www.oit.edu.cn/)| 904 | |[内蒙古能源职业学院](http://www.nmpower.cn/)|[赤峰工业职业技术学院](http://www.cfgy.cn/)|[阿拉善职业技术学院](http://www.alszyxy.cn/)|[内蒙古美术职业学院](http://www.nmgmsxy.net/)|[内蒙古民族幼儿师范高等专科学校](https://www.nmmzyz.org.cn/)| 905 | |[鄂尔多斯生态环境职业学院](http://www.ordosnmxx.com/)|[扎兰屯职业学院](http://www.zltzyxy.com/)|[包头师范学院](http://www.bttc.cn/)||| 906 | 907 | 908 | ### 新疆 909 | 910 | > 总数: 58 911 | 912 | |||||| 913 | |-|-|-|-|-| 914 | |[新疆大学](http://www.xju.edu.cn)|[石河子大学](http://www.shzu.edu.cn)|[新疆农业大学](http://www.xjau.edu.cn)|[塔里木大学](http://www.taru.edu.cn)|[新疆医科大学](http://www.xjmu.edu.cn)| 915 | |[新疆师范大学](http://www.xjnu.edu.cn)|[喀什师范学院](http://www.kstc.edu.cn)|[伊犁师范学院](http://www.ylsy.edu.cn)|[新疆财经大学](http://www.xjufe.edu.cn)|[新疆艺术学院](http://www.xjart.edu.cn)| 916 | |[昌吉学院](http://www.cjc.net.cn)|[新疆工业高等专科学校](http://www.xgz.edu.cn)|[新疆维吾尔医学专科学校](http://www.xjumc.cn/)|[和田师范专科学校](http://www.htszedu.cn/)|[新疆警官高等专科学校](http://www.xjjz.cn)| 917 | |[新疆兵团警官高等专科学校](http://www.xjbtjx.com)|[乌鲁木齐职业大学](http://www.uvu.edu.cn)|[新疆农业职业技术学院](http://www.xjnzy.edu.cn)|[克拉玛依职业技术学院](http://www.kzjsxy.net)|[新疆机电职业技术学院](http://www.xjjd.com.cn/)| 918 | |[新疆轻工职业技术学院](http://www.xjqg.edu.cn)|[伊犁职业技术学院](http://www.ylzyjs.cn)|[新疆建设职业技术学院](http://www.xjjszy.net/)|[昌吉职业技术学院](http://www.cjpt.cn)|[新疆能源职业技术学院](http://www.xjnyedu.com)| 919 | |[巴音郭楞职业技术学院](http://www.xjbyxy.cn)|[阿克苏职业技术学院](http://www.akszy.com)|[新疆现代职业技术学院](http://www.xjxiandai.net/)|[新疆石河子职业技术学院](http://www.xjshzzy.com)|[新疆交通职业技术学院](http://www.xjjtedu.com)| 920 | |[新疆天山职业技术学院](http://www.xjtsxy.cn)|[新疆职业大学](http://www.xjvu.edu.cn)|[新疆大学科学技术学院](http://www.kj.xju.edu.cn)|[新疆农业大学科学技术学院](http://www.xjstc.net)|[新疆财经大学商务学院](http://www.xzzsks.com.cn/Article/ShowArticle.asp?ArticleID=810)| 921 | |[新疆医科大学厚博学院](http://www1.xjmu.edu.cn/hbxy/index.asp)|[石河子大学科技学院](http://kjxy.shzu.edu.cn/structure/index)|[喀什大学](http://www.ksu.edu.cn/)|[伊犁师范大学](http://www.ylnu.edu.cn/)|[新疆工程学院](http://www.xjie.edu.cn/)| 922 | |[新疆警察学院](http://www.xjpcedu.cn/)|[新疆理工学院](http://www.xjistedu.cn/)|[新疆科技学院](http://www.xjswxy.edu.cn/)|[新疆天山职业技术大学](http://www.xjtsxy.cn/)|[新疆体育职业技术学院](http://www.xjsvtc.edu.cn/)| 923 | |[新疆应用职业技术学院](http://www.xjyyedu.cn/)|[新疆师范高等专科学校](https://www.xjei.edu.cn/)|[新疆铁道职业技术学院](http://www.xjtzy.net/)|[新疆生产建设兵团兴新职业技术学院](http://btc.edu.cn/)|[哈密职业技术学院](http://www.hmzyedu.cn/)| 924 | |[新疆科技职业技术学院](http://www.xjkjzyjsxy.com/)|[吐鲁番职业技术学院](http://www.tlfzj.com/)|[博尔塔拉职业技术学院](http://www.betltc.cn/)|[和田职业技术学院](https://www.htpt.edu.cn/)|[石河子工程职业技术学院](http://www.shzvce.cn/)| 925 | |[新疆科信职业技术学院](https://baike.baidu.com/item/%E6%96%B0%E7%96%86%E7%A7%91%E4%BF%A1%E8%81%8C%E4%B8%9A%E6%8A%80%E6%9C%AF%E5%AD%A6%E9%99%A2/20481257?fr=aladdin)|[新疆工业职业技术学院](https://www.xjgzy.edu.cn/)|[铁门关职业技术学院](https://www.tmgxy.edu.cn/)||| 926 | 927 | 928 | ### 香港 929 | 930 | > 总数: 27 931 | 932 | |||||| 933 | |-|-|-|-|-| 934 | |[香港大学](http://www.hku.hk)|[香港科技大学](http://www.ust.hk)|[香港理工大学](http://www.polyu.edu.hk)|[香港中文大学](http://www.cuhk.edu.hk)|[香港浸会大学](http://www.hkbu.edu.hk)| 935 | |[香港城市大学](http://www.cityu.edu.hk)|[香港岭南大学](http://www.ln.edu.hk)|[香港教育学院](http://www.ied.edu.hk)|[澳门大学](http://www.umac.mo)|[澳门理工学院](http://www.ipm.edu.mo)| 936 | |[澳门科技大学](http://www.must.edu.mo)|[澳门城市大学](http://www.cityu.edu.mo)|[澳门镜湖护理学院](http://www.kwnc.edu.mo)|[澳门旅游学院](http://www.ift.edu.mo)|[台湾中央大学](http://www.ncu.edu.tw)| 937 | |[台湾清华大学](http://www.nthu.edu.tw)|[交通大学](http://www.nctu.edu.tw)|[台湾大学](http://www.ntu.edu.tw)|[嘉义大学](http://www.ncyu.edu.tw)|[元智大学](http://www.yzu.edu.tw)| 938 | |[成功大学](http://www.ncku.edu.tw/)|[中山大学](http://www.nsysu.edu.tw/bin/home.php)|[中原大学](http://www.cycu.edu.tw/)|[政治大学](http://www.nccu.edu.tw/)|[天主教辅仁大学](http://www.fju.edu.tw/)| 939 | |[台湾科技大学](http://www.fju.edu.tw/)|[香港歌德学院](http://www.goethe.de/os/hon)|||| 940 | 941 | 942 | ### 澳门 943 | 944 | > 总数: 29 945 | 946 | |||||| 947 | |-|-|-|-|-| 948 | |[香港大学](http://www.hku.hk)|[香港科技大学](http://www.ust.hk)|[香港理工大学](http://www.polyu.edu.hk)|[香港中文大学](http://www.cuhk.edu.hk)|[香港浸会大学](http://www.hkbu.edu.hk)| 949 | |[香港城市大学](http://www.cityu.edu.hk)|[香港岭南大学](http://www.ln.edu.hk)|[香港教育学院](http://www.ied.edu.hk)|[澳门大学](http://www.umac.mo)|[澳门理工学院](http://www.ipm.edu.mo)| 950 | |[澳门科技大学](http://www.must.edu.mo)|[澳门城市大学](http://www.cityu.edu.mo)|[澳门镜湖护理学院](http://www.kwnc.edu.mo)|[澳门旅游学院](http://www.ift.edu.mo)|[台湾中央大学](http://www.ncu.edu.tw)| 951 | |[台湾清华大学](http://www.nthu.edu.tw)|[交通大学](http://www.nctu.edu.tw)|[台湾大学](http://www.ntu.edu.tw)|[嘉义大学](http://www.ncyu.edu.tw)|[元智大学](http://www.yzu.edu.tw)| 952 | |[成功大学](http://www.ncku.edu.tw/)|[中山大学](http://www.nsysu.edu.tw/bin/home.php)|[中原大学](http://www.cycu.edu.tw/)|[政治大学](http://www.nccu.edu.tw/)|[天主教辅仁大学](http://www.fju.edu.tw/)| 953 | |[台湾科技大学](http://www.fju.edu.tw/)|[IFT旅游学院](http://www.ift.edu.mo/)|[亚洲国际公开大学](http://www.aiou.edu/)|[澳门保安部队高等学校](http://www.fsm.gov.mo/esfsm/)|| 954 | 955 | 956 | ### 台湾 957 | 958 | > 总数: 29 959 | 960 | |||||| 961 | |-|-|-|-|-| 962 | |[香港大学](http://www.hku.hk)|[香港科技大学](http://www.ust.hk)|[香港理工大学](http://www.polyu.edu.hk)|[香港中文大学](http://www.cuhk.edu.hk)|[香港浸会大学](http://www.hkbu.edu.hk)| 963 | |[香港城市大学](http://www.cityu.edu.hk)|[香港岭南大学](http://www.ln.edu.hk)|[香港教育学院](http://www.ied.edu.hk)|[澳门大学](http://www.umac.mo)|[澳门理工学院](http://www.ipm.edu.mo)| 964 | |[澳门科技大学](http://www.must.edu.mo)|[澳门城市大学](http://www.cityu.edu.mo)|[澳门镜湖护理学院](http://www.kwnc.edu.mo)|[澳门旅游学院](http://www.ift.edu.mo)|[台湾中央大学](http://www.ncu.edu.tw)| 965 | |[台湾清华大学](http://www.nthu.edu.tw)|[交通大学](http://www.nctu.edu.tw)|[台湾大学](http://www.ntu.edu.tw)|[嘉义大学](http://www.ncyu.edu.tw)|[元智大学](http://www.yzu.edu.tw)| 966 | |[成功大学](http://www.ncku.edu.tw/)|[中山大学](http://www.nsysu.edu.tw/bin/home.php)|[中原大学](http://www.cycu.edu.tw/)|[政治大学](http://www.nccu.edu.tw/)|[天主教辅仁大学](http://www.fju.edu.tw/)| 967 | |[台湾科技大学](http://www.fju.edu.tw/)|[清华大学(新竹)](http://www.nthu.edu.tw/)|[中央大学](http://www.ncu.edu.tw/)|[中正大学](http://www.ccu.edu.tw/)|| 968 | 969 | 970 | -------------------------------------------------------------------------------- /generate_readme.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python3 2 | # coding: utf-8 3 | # @Author: Jor 4 | # @Date: 2022年 4月18日 星期一 19时28分38秒 CST 5 | # @Desc: 将 json 写进 README.md 文件 6 | 7 | import os 8 | import time 9 | import json 10 | import pyfiglet 11 | 12 | 13 | def title() -> None: 14 | fig = pyfiglet.Figlet(font="graffiti", width=2000) 15 | return f"```\n{fig.renderText('EDU-Website')}\n```\n\n" 16 | 17 | 18 | def header() -> str: 19 | info = ["```\n", 20 | f"@Author: Jorhelp\n", 21 | f"@Date: {time.asctime(time.localtime(time.time()))}\n", 22 | f"@Desc: 国内高校网址汇总,可以用来做数据分析或数据挖掘,甚至可以批量扫描来渗透测试(遵守法律,不要做出格的事)\n", 23 | "```\n\n"] 24 | return ''.join(info) 25 | 26 | 27 | with open('edu.json', 'r') as f: 28 | jdata = json.load(f) 29 | 30 | 31 | with open('README.md', 'w') as f: 32 | f.write(title()) 33 | f.write(header()) 34 | 35 | col_num = 5 36 | for province, vals in jdata.items(): 37 | f.write(f"### {province}\n\n") 38 | f.write(f"> 总数: {len(vals)}\n\n") 39 | 40 | # 构造一个表格 41 | f.write('|' * (col_num + 1) + '\n') # 共 5 列 42 | f.write('-'.join(['|'] * (col_num + 1)) + '\n') 43 | _count = 0 44 | _tmp = '|' 45 | for name, url in vals.items(): 46 | _tmp += f"[{name}]({url})|" 47 | _count += 1 48 | if _count == col_num: 49 | f.write(_tmp + '\n') 50 | _count = 0 51 | _tmp = '|' 52 | # 最后不够 col_num 的若干个 53 | if _count > 0: 54 | _tmp += '|' * (col_num - _count) 55 | f.write(_tmp + '\n') 56 | 57 | f.write('\n\n') 58 | --------------------------------------------------------------------------------