国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CS/INFO 6850 代做信息網絡結構程序
代寫CS/INFO 6850 代做信息網絡結構程序

時間:2024-09-14  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


The Structure of Information Networks

Homework 1

CS/INFO 6850 Fall 2024

Due 6pm, Wednesday, Sept. 18, 2024

The goal of this problem set is to provide practice implementing some basic network analysis techniques on a moderate-sized network dataset — specifically, a coauthorship network con-structed from a bibliography file of computer science papers maintained by Joel Seiferas at the University of Rochester. To make sure that the bibliography file is easy to obtain, a copy of it is has been posted on Canvas as the file “ps1data.txt”. As a first step, we will only be using papers written between the years 1985 and 2005 inclusive, so you should only keep lines in the file corresponding to papers written in this interval.

Building the coauthorship network. Here are some instructions on how to create the coau-thorship network from the raw bibliography. The short explanation is: each line represents a paper, and we want to build the undirected graph whose nodes are the people named in the bibliography, and whose edges join those pairs of people who’ve coauthored a paper in the bib-liography. This graph should only be constructed using papers written between the years 1985 and 2005 inclusive.

The more detailed instructions now follow. Each line in the bibliography describes a distinct paper, and has the following format:

year [number] conference/journal author & author & ... & author, title

Here, conference/journal is an acronym encoding the conference or journal where the paper appeared, year is the year of the paper, and number is the volume number of the journal or conference. We write number in brackets above because it is present in some lines and (when it is not known or not applicable) absent in others. Authors are given by last name only, and separated by the & symbol. The list of authors ends with a comma, and the the remainder of the line is the title. Thus, a sample line from the file is

1994 11 ALGRTHMICA Khuller & Naor, Flow in Planar Graphs with Vertex Capacities

encoding the paper “Flow in Planar Graphs with Vertex Capacities” by Khuller and Naor in Volume 11 of the journal Algorithmica. Finally (as with any list of records of this length), it is possible that a few of the lines in the file are misformatted.

You should start by only keeping lines for which the year is in the interval [1985, 2005] (including the two endpoints 1985 and 2005). From this set of lines, you should construct a coauthorship network as follows.

• There should be one node for each person. (Note that even if a person is an author on 50 of the papers listed in the bibliography file, there should still just be one node corresponding to him or her, not 50.)

• There should be an undirected edge between nodes A and B if and only if they are coauthors on a paper in the bibliography. (If they are coauthors on multiple papers, there should still just be a single edge joining them.)

For example, if the file consisted of just the three lines

1992 27 BAMS Alon & Kleitman, Piercing Convex Sets

1994 11 ALGRTHMICA Khuller & Naor, Flow in Planar Graphs with Vertex Capacities

1996 45 IEEETC Azar & Naor & Rom, Routing Strategies for Fast Networks

then the graph should have node set

{Alon, Azar, Khuller, Kleitman, N aor, Rom}

and edge set

{(Alon, Kleitman),(Azar, N aor),(Azar, Rom),(N aor, Rom),(Khuller, N aor)}.

Caveats. Before we move on to the problems themselves, here are three points worth mention-ing about the network we’re studying here.

(i) As we’ll see at various points in the course, coauthorship networks are a popular kind of “model system” for large-scale network analysis. This is not so much because there’s universal fascination with the coauthoring habits of scientists (though it’s an interesting topic that some people study as their research area), but because coauthorship networks are a kind of social network, encoding a particular type of collaboration among people, for which extremely rich and detailed data is available. As a result, it is a chance to try out network analysis techniques at very high resolution, in a setting that possesses many of the properties exhibited by much “messier” and harder-to-measure social networks as well.

(ii) Any time one tries to build a network from a file containing a list of names, there’s the concern that different people can have the same name, and hence these different people are being “merged” into a single node. This is definitely something to worry about when one tries to draw inferences about social structure from the resulting network. However, in our case, we are using this dataset simply to build an interesting graph on which to practice various analysis techniques, so for our limited purposes there’s no problem: if two authors have the same last name, then for us they are the same person.

(ii') In fact, because of the issue in (2), there are papers where someone appears to coauthor with themselves. We will omit from the network those edges that link some node to itself.

(iii) Point (ii) is a particular instance of a broader principle, that in building a network from everyday data such as this list of papers, some of the entries will be misformatted or contain idiosyncracies that conflict with the general assumptions we’re making about how the data is structured. For these unusual cases, it’s fine to make up a consistent set of rules for how you’re handling situations that don’t follow the expected structure, and to document the choices you made in doing this. The goal is to make choices that don’t have a significant effect on the result, where possible.

What to hand in

You should upload the following files to Canvas; please read this section carefully, since the format is important. In particular, for the first file, there is a specific line format we need, since we will be using scripts as part of the grading.

The files to hand in:

(1) An ascii .txt file named “hw1solution.txt”. This should have results for the questions below, with each line on which you are reporting part of the answer beginning with a “@”. The form. for these lines will be described in the questions below. The first line of this file hw1solution.txt should be just your NetID, as a single string.

(2) Four files named “plot1”, “plot2”, “plot3”, and “plot4”, containing the plots associated with Questions 1, 2, 3, and 4 respectively. These can be in any standard image format (e.g. plot1.png, or plot1.jpg, and so forth.).

(3) The source code you used to compute the answers. By default, we won’t be grading the quality of the code itself, but it will be useful to have it in case we run into any confusion. It is fine to use packages or software specifically designed for handling graphs, in which case you should just include what you wrote. If you answer the questions by some means where the notion of “source code” doesn’t exactly apply, such as an interactive session with a software package, then submit whatever analogue of source code we’d need to see how you answered the questions — for example, a script. you wrote as part of some larger existing package, or a transcript. of an interactive session in which you did it. (This file should be named “code” and can be in any format; if you need to bundle together multiple files, for example, it can be a zipped or gzipped folder or tar file.)

(4) A brief description of how to apply your code (or code analogue, or transcript) to the data, together with any decisions you made about how to handle the data that would be useful for us to know about. (This file should be named “explanation” and can be in any format. It’s this file that can address any decisions on data-handling that you had to make in accordance with general caveat (iii) above.)

Again, for most of the solutions, we’ll simply be evaluating (1) and (2), and only consulting (3) or (4) as background if necessary.

The Problems

(1) Recall that the degree of a node is the number of edges it’s incident to. We start by considering how the degrees of the nodes are distributed.

Thus, for a number j, let nj denote the number of nodes with degree exactly j. Let d ∗ be the maximum degree of any node in the network. (This is the maximum total number of co-authors that any one author has — the maximum j for which nj > 0.)

(a) For each j from 0 to d ∗ , output the number nj . Each of these should correspond to a line in the file hw1solution.txt with the following four fields

@ 1 j nj

(The second field here simply denotes that you’re answering the first question.) So for example, in the file above consisting only of the three lines

1992 27 BAMS Alon & Kleitman, Piercing Convex Sets

1994 11 ALGRTHMICA Khuller & Naor, Flow in Planar Graphs with Vertex Capacities

1996 45 IEEETC Azar & Naor & Rom, Routing Strategies for Fast Networks

the correct output would be

@ 1 0 0

@ 1 1 3

@ 1 2 2

@ 1 3 1

(Recall that before any of these lines, the first line of your file hw1solution.txt should be your NetID.)

(b) Produce a scatterplot in the plane of the ordered pairs (log j, log nj ) for those j such that both j > 0 and nj > 0. Hand this in as the file plot1. Later in the course, we’ll see some proposed explanations for why such scatterplots can often be approximated fairly well by a straight line.

(2) Now we consider the sizes of the connected components in the network.

(a) Let n* be the number of nodes in the largest connected component, and let n be the number of nodes in graph overall. Report these two quantities and their ratio, as a line in the file hw1solution.txt of the form.

@ 2 n* n n*/n

For example, on our sample graph above, you would report

@ 2 4 6 .667

Looking at the ratio of these two quantities is a good way to assess whether we should think of the network as having a “giant” component, or whether it consists entirely of small components.

(b) Let kj denote the number of connected components of size j, and let c* denote the size of the second-largest component. For each j from 1 to c*, output the number kj . Each of these should correspond to a line in the file hw1solution.txt with the following four fields

@ 2 j kj

For example, on our sample graph above, you would report

@ 2 1 0

@ 2 2 1

(c) Produce a scatterplot in the plane of the ordered pairs (log j, log kj ) for those j such that both 1 ≤ j ≤ c* and also kj > 0. Hand this in as the file plot2. The extent to which logarithmic plots of component sizes should look like straight lines is less heavily studied, but there is evidence for this as well.

(3) We next consider node-to-node distances in the largest component.

(a) We start by fixing the author name Gries (i.e. David Gries, an eminent faculty member of Cornell CS, who joined in its early years) as our “root node.” For each j, let rj denote the number of nodes at distance exactly j from Gries. (So r0 = 1, and r1 is equal to the degree of Gries.) Let s* denote the largest j for which rj > 0 — this is the farthest anyone in the bibliography is from Gries, yet still connected to him by a path.

For each j from 1 to s*, output the number rj . Each of these should correspond to a line in the file hw1solution.txt with the following four fields

@ 3 j rj

For example, on our sample graph above, if the starting node were Khuller (rather than Gries), you would report

@ 3 1 1

@ 3 2 2

(b) Produce a histogram that plots rj as a function of j, for j from 1 to s*. Hand this in as the file plot3.

(4) Finally, we continue the analysis from the previous question by considering the structure of breadth-first search trees. In a graph G, a breadth-first search tree rooted at a node r is simply a tree T that we build as follows. We first make node r the root of T. Then, for j = 1, 2, 3, ... in increasing order, we include in T all the nodes whose distance from r in G is equal to j. When we get to a value of j (meaning that we’ve already included all nodes at distance up to j − 1 in T), we consider each node v whose distance from r is equal to j. For each such v, we include it in T by making it the child of some node u at distance j −1 from r, where u and v are neighbors in G. Note that since there might be multiple choices of u for a given v, this means that there may be multiple breadth-first search trees rooted at r.

A breadth-first search tree thus satisfies the following properties.

(i) The root of T is r, and T contains precisely the nodes in r’s connected component.

(ii) Each edge of T is also in G.

(iii) For each node v in T, if the shortest-path distance from r to v in G is equal to j, then v is at depth j in T.

(a) Construct a breadth-first search tree T rooted at the node corresponding to Gries. Above, we noted why there can be many different breadth-first search trees with a given root: each time a node v at distance j from the root has multiple neighbors at distance j − 1, each of these neighbors is eligible to be the parent of v.

One way to quantify this variability is to count the number of options that nodes have for their parents. For a node v at distance j from the root, let’s say that u is a potential parent associated with v if u is at distance j − 1 from the root, and u is a neighbor of v in the graph G. Note that the parent of v in the breadth-first search is one of the potential parents associated with v.

For each j, let pj denote the average number of potential parents associated with nodes at distance j from the root node (in this case, Gries). That is, each node v at distance j from the root has a number of potential parents associated with it; we take the average of these numbers over all nodes v at distance j from the root.

Recall from the previous question that s* denotes the largest j for which there is some node at distance j from Gries.

For each j from 1 to s*, output the number pj . Each of these should correspond to a line in the file hw1solution.txt with the following four fields

@ 4 j pj

To construct an example with respect to potential parents, suppose we add two more papers to our sample input from earlier (to go along with the three we already have), so that the full input is now:

1992 27 BAMS Alon & Kleitman, Piercing Convex Sets

1994 11 ALGRTHMICA Khuller & Naor, Flow in Planar Graphs with Vertex Capacities

1996 45 IEEETC Azar & Naor & Rom, Routing Strategies for Fast Networks

1987 16 SICOMP Azar & Vishkin, Tight Comparison Bounds on the Complexity of

Parallel Sorting

1992 24 STOC Khuller & Vishkin, Biconnectivity Approximations and Graph Carvings

Now, if we construct a breadth-first search tree with Khuller as the root node, using the co-authorship graph built from these five papers (the two above and the three original ones), then the resulting tree will have Naor and Vishkin at depth 1, and Azar and Rom at depth 2. Naor, Vishkin, and Rom each have one potential parent in any breadth-first search tree rooted at Khuller, but Azar has two potential parents: Naor and Vishkin.

Thus, on this example input with five papers, the output would be

@ 4 1 1

@ 4 2 1.5

(b) Produce a histogram that plots pj as a function of j, for j from 1 to s*. Hand this in as the file plot4.

 

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp











 

掃一掃在手機打開當前頁
  • 上一篇:代寫CDS540程序、代做Python/Java編程設計
  • 下一篇:ENG 5105代做、代寫Java/Python編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    日本在线精品视频| 日韩精品一区二区免费| 日本一区视频在线观看免费| 国产欧美在线视频| 国产精品视频成人| 秋霞在线观看一区二区三区| 国产精品一区二区三区在线观| 国产精品视频大全| 欧美极品日韩| 国产精品视频网| 奇米影视首页 狠狠色丁香婷婷久久综合 | 蜜桃视频一区二区在线观看| 俺去了亚洲欧美日韩| 日韩精品一区二区三区丰满| 国产成人一区二区三区别| 亚洲黄色一区二区三区| 91九色在线免费视频| 伊人久久在线观看| 二级片在线观看| 中文字幕日韩精品无码内射| 国产精自产拍久久久久久蜜| 中文精品无码中文字幕无码专区| 国产乱子伦农村叉叉叉| 九九精品视频在线观看| 国产欧美高清在线| 久久久久国产一区二区三区| 成人黄动漫网站免费| 一区二区日本伦理| 91免费在线观看网站| 亚洲91精品在线亚洲91精品在线| 97国产在线播放| 亚洲va久久久噜噜噜久久天堂| 91久久精品国产91久久| 视频一区三区| 久久人妻无码一区二区| 日本一区免费在线观看| 色婷婷综合久久久久中文字幕1| 人妻熟女一二三区夜夜爱| 国产精品爽黄69| 国产青草视频在线观看| 亚洲影影院av| 久久国产精品-国产精品| 欧美亚洲另类在线一区二区三区 | 亚洲天堂第一区| 久久免费少妇高潮久久精品99| 日本一本a高清免费不卡| 久久久精品免费视频| 国产亚洲天堂网| 欧美激情一区二区三区久久久| 99在线观看| 日韩免费在线播放| 国产精品久久久久秋霞鲁丝| 国产精品永久免费观看| 日韩最新中文字幕| 国产精品区一区二区三在线播放| 国产三区二区一区久久| 亚洲aⅴ日韩av电影在线观看| 国产成+人+综合+亚洲欧美丁香花 国产成+人+综合+亚洲欧洲 | 国产美女91呻吟求| 亚洲一区免费网站| 久久精品网站视频| 精品一区二区久久久久久久网站| 色综合视频网站| 国产成人97精品免费看片| 国产在线精品二区| 日韩在线国产| 国产精品国产精品国产专区不卡| 91麻豆精品秘密入口| 欧美日韩在线播放一区二区| 国产99在线|中文| 久久久久久亚洲精品中文字幕| 国产欧美在线一区| 青青草精品毛片| 亚洲午夜久久久影院伊人| 日韩一级黄色av| 国产精品一码二码三码在线| 日韩免费中文专区| 中文字幕在线中文| 国产精品视频久| 国产精品999| 国产欧美综合一区| 欧美日韩精品免费在线观看视频| 亚洲图片在线观看| 国产精品免费久久久久影院| 国产精品99久久免费黑人人妻 | 亚洲一区精品电影| 久久久成人av| 国产高清精品一区二区三区| 国产欧美在线观看| 欧美国产视频一区| 日本久久久久久| 一本色道久久88亚洲精品综合| 国产精品啪啪啪视频| 国产成人亚洲综合91| 成人av色在线观看| 精品少妇一区二区三区在线| 热re99久久精品国产66热| 午夜精品一区二区三区av| 精品国产无码在线| 国产精品美女视频网站| 久久综合伊人77777麻豆| 国产欧美精品在线| 国产在线一区二| 欧美视频免费播放| 日韩欧美亚洲天堂| 少妇性饥渴无码a区免费| 久久久久久18| 九九精品视频在线观看| 精品国产一区二区三区久久久| 91成人免费观看网站| 白白操在线视频| 国产精品综合不卡av| 国产主播精品在线| 国模精品视频一区二区三区| 欧美性一区二区三区| 日本一区二区三区精品视频| 亚洲色图都市激情| 亚洲一区精彩视频| 亚洲第一精品区| 婷婷五月色综合| 午夜精品久久久久久久99黑人| 中文字幕在线中文字幕日亚韩一区| 久久99国产精品自在自在app| 国产精品第一视频| 久久成人一区二区| 欧美成人四级hd版| 精品国产免费av| 精品伦精品一区二区三区视频| 国产精品国产精品国产专区蜜臀ah| 国产精品免费观看在线| 久久久国产一区| 国产精品污www一区二区三区| 日韩视频免费观看| 久久精品一本久久99精品| 久久久www成人免费精品| 国产精品伦子伦免费视频| 国产精品久久久久7777婷婷| 不卡av电影院| 中文字幕一区二区中文字幕| 亚洲自拍另类欧美丝袜| 午夜精品久久久久久久99热| 日本精品一区二区三区在线播放视频| 日韩免费毛片视频| 91精品国产综合久久久久久久久 | 97精品国产97久久久久久| 亚洲字幕在线观看| 久久国产精品久久久久| 欧美一级欧美一级| 91精品综合久久久久久五月天| 国产精选一区二区| 91久久精品www人人做人人爽| 久久精品日产第一区二区三区精品版 | 视频在线一区二区| 爽爽爽爽爽爽爽成人免费观看| 国产精品视频不卡| 在线观看欧美一区| 人妻无码视频一区二区三区| 91久久偷偷做嫩草影院| 99精品人妻少妇一区二区| 成人国产精品日本在线| 日韩av片免费在线观看| 欧洲精品在线播放| 国产中文字幕二区| av一区二区三区四区电影| 国产精品97在线| 久久日韩精品| 国产精品普通话| 一道本在线观看视频| 色欲色香天天天综合网www| 欧洲美女7788成人免费视频| 国产一区二中文字幕在线看| 福利视频一区二区三区四区| 久久久精品动漫| 国产精品你懂得| 亚洲图片欧洲图片日韩av| 日韩精品不卡| 国产情侣第一页| 国产v综合v亚洲欧美久久| 国产精品久久久久久久天堂| 亚洲一区精品电影| 欧美不卡1区2区3区| 国产乱人伦真实精品视频| 久久精品午夜一区二区福利| 国产精品免费电影| 亚洲va韩国va欧美va精四季| 免费毛片网站在线观看| 国产精品99久久久久久久久| 国产精品老牛影院在线观看 | 日本不卡视频在线播放| 国产日韩欧美中文在线播放| 久久精品视频16| 萌白酱国产一区二区| 婷婷久久五月天| 国产男女免费视频| 精品国产一区二区三区四区在线观看| 久国内精品在线| 欧美一级大片视频| 国产激情片在线观看| 欧美精品久久久久久久| 极品校花啪啪激情久久|