搜索资源列表
adjacency_link
- 使用VC建立无向图的邻接表。再通过简单的打印函数遍历整张图,输入各个节点信息。-Establish the adjacency link of the no direction graph based on VC. And then prints the whole graph through the simple print function, and outputs the information of all the nodes.
multicast.c.tar
- The following program sends or receives multicast packets. If invoked with one argument, it sends a packet containing the current time to an arbitrarily chosen multicast group and UDP port. If invoked with no arguments, it receives and prints t
C++webserver
- C++ webserver thats prints out html
bustop
- 该系统有一个面向客户的平台和一个面向管理员的平台,用户把预定车票的信息(姓名、性别、身份证号码、旅行时间、旅行始发地和目的地,要求等)输入到系统中,系统为旅客安排车次。当旅客交付了预订金后,旅客在前一天凭取票通知和账单交款取票,系统核对无误即打印出车票给旅客。此外汽车公司为随时掌握各个汽车的乘载情况,需要定期进行查询统计,以便适当调整。同时还需完成车次取消后的处理,旅客临时更改车次的处理等。-The system has a customer-oriented platform and a pl
tcp1
- 远程控制系统 利用数据报套接字实现一个简单的远程控制系统: 客户端输入“quit”,客户端程序与服务器端程序打印退出信息,终止程序的执行; 客户输入命令,客户端将命令通过流套接字发送给客户端,服务器执行收到的命令,并将结果发送到客户端显示; 如果没有客户输入的命令,服务器发送命令非法信息,并在客户端显示该条信息。 -Remote control system to achieve a datagram socket using a simple remote control
twitter-stream-links.py
- ultra-real-time stream of twitter s public timeline # prints live results containing a URL link and the #OWS tag-ultra-real-time stream of twitter s public timeline # prints live results containing a URL link and the#OWS tag
udp_server
- UDP组播接收程序。接收程序输入参数为组播地址、端口号;接收程序打印出接收到的消息、消息的来源等信息; -UDP multicast receiver. Receiving program input parameters for a multicast address, port number receiving program prints out the received message, and other news sources of information
960-Grid-System-master
- Words) Write a program that determines and prints the number of duplicate words in a sentence. Treat uppercase and lowercase letters the same. Ignore punctuation.
code
- 创建一个静态的顺序表存放整数。大小为10.完成以下的操作输入6个整数,1.打 印出顺序表中的内容,并显示表中剩余的空间个数。在顺序表中的第3个位置插入元素O.2.打印出顺序表中的内容,并显示表中剩余的空间个数。再试图向表中第11个位置插入整数0,3.程序提示超出范围。4.删除表中第6个元素,打印出顺序表中的内容,并显示表中剩余的空间个数。 二:编写一程序,动态地创建一个顺序表。要求顺序表初始长度为20,向顺序表中输 入15个整数,并打印出来: 再删除顺序表中的第5个元素。打印出删除后的结果。(