Pointcut algorithm Template (Cut-vertex)

Source: Internet
Author: User

Below is a template is cut point, also cut_vertex_num[] arrangement (array) What is cut-point record

int cut_vertex_num[];void dfs (int cur,int pa) {  int child=0,flag=0,i;  low[cur]=dfn[cur]=++depth;  For (I=0;i<adj[cur].size (); i++)    {    int next=adj[cur][i];    if (!dfn[next])//If not interviewed      {       child++;       DFS (next,cur);       Low[cur]=min (Low[next],low[cur]);//No Back edge returns to its ancestors, equal to return to itself at most, setting flag       if (Low[next]>=dfn[cur]) flag= 1;      }      else if (NEXT!=PA)//If you have visited        low[cur]=min (Low[cur],dfn[next]);} If there are more than two sub-nodes or the nodes are not root, and the cut-point precondition is set, it should be cut   if ((child>=2 | | pa>=0) && flag)      Cut_vertex_num[++ans ]=cur;   return;}


Copyright notice: This article Bo Master original articles, blogs, without consent may not be reproduced.

Pointcut algorithm Template (Cut-vertex)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.