SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1



     The Gracefulness of the Merging Graph N ** C4 with Dotnet Framework
                                 Solairaju¹, N. Abdul Ali² and R.M. Karthikkeyan3
                         1-2
                            : P.G. & Research Department of Mathematics, Jamal Mohamed College, Trichy – 20.
                                         3:
                                            M.Phil Scholar, Jamal Mohamed College, Trichy – 20.



Abstract:
          There are many graceful graph from standers path, circuit, wheel etc .In this paper a new class of graceful graphs
related to c4 [circuits with 4 vertices] is obtained .

Keyword: - path limit, ‛n’ - copies of c4

I.     Introduction:
            Most graph labeling methods trace their origin to one introduced by Rosa [2] or one given Graham and Sloane [1].
Rosa defined a function f, a -valuation of a graph with q edges       if f is an injective map from the vertices of G to the set {0,
1, 2 ,…,q} such that when each edge xy is assigned the label f(x)-f(y), the resulting edge labels are distinct.
            A. Solairaju and K. Chitra [3] first introduced the concept of edge-odd graceful labeling of graphs, and edge-odd
graceful graphs.
            A. Solairaju and others [5,6,7,8,9] proved the results that(1) the Gracefulness of a spanning tree of the graph of
Cartesian product of P m and Cn,was obtained (2) the Gracefulness of a spanning tree of the graph of cartesian product of Sm
and Sn, was obtained (3) edge-odd Gracefulness of a spanning tree of Cartesian product of P 2 and Cn was obtained (4) Even -
edge Gracefulness of the Graphs was obtained (5) ladder P2 x Pn is even-edge graceful, and (6) the even-edge gracefulness of Pn
                                                                                                                        n
O nC5 is obtained.(8) Gracefulness of Tp-tree with five levels obtained by java programming,(9) Gracefulness of c4 Merging with
paths,(10) A new class of graceful trees and (11) Gracefulness of P K       , is obtained. (12, 13, 14) Used for dot net framework
3.5.

Section I: Preliminaries

Definition 1.1:
          Let G = (V,E) be a simple graph with p vertices and q edges.
         A map f :V(G)  {0,1,2,…,q} is called a graceful labeling if
         (i)      f is one – to – one

         (ii)     The edges receive all the labels (numbers) from 1 to q where the label of an edge is the absolute value of the
                  difference between the vertex labels at its ends.
                 A graph having a graceful labeling is called a graceful graph.

Example 1.1:      The graph 6 ∆ P5 is a graceful graph.




                               Theorem: The gracefulness of the merging graph n ** c4 generalization:

Issn 2250-3005(online)                                     January| 2013                                        Page 65
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1




f (T1) = 0,
 f (T2) = q,
f (T3) = 1,
f (T4) = q-2
f (v1) = q - 4
f (vn) = 3.
f (vi) =



Example 1.1 :




           Algorithm for THE GRACEFULNESS OF THE MERGING GRAPH n ** C4 in Dotnet Language
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

Issn 2250-3005(online)                           January| 2013                                     Page 66
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1



namespace Class
{
  public partial class Form1 : Form
  {
    public Form1()
    {
       InitializeComponent();
    }
    int StartX = 5;
    int StartY = 5;
    int Width = 500;
    int Height = 500;
    private void btnLine_Click(object sender, EventArgs e)
    {
       // Declare edges and center point
       int edges =Convert.ToInt32( textBox1.Text);
       int center = Width / 2;
       int newedge = (1 + 4 * edges);
       label2.Text = "No of Edges :" + newedge.ToString();
       // Set Graphics Tool
       Graphics g;
       g = this.CreateGraphics();
       g.Clear(Color.White);
       SolidBrush myBrush = new SolidBrush(Color.Black);
       Font font = new Font("Times New Roman", 12.0f);
       Pen myPen = new Pen(Color.Red);
       myPen.Width = 2;

       // Draw center line and Rectangle
       g.DrawLine(myPen, Width, StartX, StartY, Height);
       g.DrawRectangle(myPen, StartX, StartY, Width, Height);
       //draw Inner Rectangle lines
       int nval = (center / edges);
        int sample=center;
        int sample1 = center;
       for (int i = 0; i < edges-1; i++)
       {
          sample = sample + nval;
          sample1 = sample1 - nval;

           g.DrawLine(myPen, sample, sample, StartY, Height);
           g.DrawLine(myPen, Width, StartX, sample, sample);

           g.DrawLine(myPen, sample1, sample1, StartY, Height);
           g.DrawLine(myPen, Width, StartX, sample1, sample1);

       }

      // Find Edges Values
       int q = (1+4*Convert.ToInt32(textBox1.Text));
       int T1 = 0;
       int T2 = q;
       int T3 = 1;
       int T4 = q - 2;
       int P1 = 1;

Issn 2250-3005(online)                                  January| 2013                                     Page 67
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1



            g.DrawString(T1.ToString(), font, myBrush, Width, StartY);
            g.DrawString(T2.ToString(), font, myBrush, Height, Width);
            g.DrawString(T3.ToString(), font, myBrush, StartX, Width);
            g.DrawString(T4.ToString(), font, myBrush, StartX, StartY);
            g.DrawString(P1.ToString(), font, myBrush, center, center);
            g.DrawString(Convert.ToString(T4 - T1), font, myBrush, Width - center, StartY);
            g.DrawString(Convert.ToString(T2 - T1), font, myBrush, Height, Width - center);
            g.DrawString(Convert.ToString(T2 - T3), font, myBrush, Height - center, Width);
            g.DrawString(Convert.ToString(T4 - T3), font, myBrush, StartX, Width - center);
            int v1 = q - 4;
            int vn = 3;
            int incrementvalue = center / edges;
            int addsub = 0;
            int diff = 300;
            for (int j = 0; j < edges-1; j++)
            {
               addsub = addsub + incrementvalue;
               g.DrawString(vn.ToString(), font, myBrush, center+addsub, center+addsub);
                g.DrawString(Convert.ToString(vn - T3), font, myBrush, center +(addsub-100), center +addsub);
               g.DrawString(Convert.ToString(vn - T1), font, myBrush, center+addsub, center +(addsub-100));
               g.DrawString(v1.ToString(), font, myBrush, StartX + addsub, StartY + addsub);
               g.DrawString(Convert.ToString(v1 - T3), font, myBrush, StartY +(addsub-60),StartY+addsub+10);
              g.DrawString(Convert.ToString(v1 - T1), font, myBrush, StartX+addsub+10, StartX+(addsub-60));
               v1 = v1 - 4;
               vn = vn + 4;
            }


        }


    }
}

Example 1 : n is Even (n=6) :




Issn 2250-3005(online)                                     January| 2013                                     Page 68
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1



Example 2 : n is Odd (n=5)




References:
  [1]. R. L. Graham and N. J. A. Sloane, On additive bases and harmonious graph, SIAM J. Alg. Discrete Math., 1 (1980) 382
        – 404.
  [2]. A. Rosa, On certain valuation of the vertices of a graph, Theory of graphs (International
  [3]. Synposium,Rome,July 1966),Gordon and Breach, N.Y.and Dunod Paris (1967), 349-355.
  [4]. A.Solairaju and K.Chitra Edge-odd graceful labeling of some graphs, Electronics Notes in Discrete Mathematics
        Volume 33,April 2009,Pages 1.
  [5]. A. Solairaju and P.Muruganantham, even-edge gracefulness of ladder, The Global Journal of Applied Mathematics &
        Mathematical Sciences(GJ-AMMS). Vol.1.No.2, (July-December-2008):pp.149-153.
  [6]. A. Solairaju and P.Sarangapani, even-edge gracefulness of Pn O nC5, Preprint (Accepted for publication in Serials
        Publishers, New Delhi).
  [7]. A.Solairaju, A.Sasikala, C.Vimala Gracefulness of a spanning tree of the graph of         product of Pm and Cn, The
        Global Journal of Pure and Applied Mathematics of Mathematical Sciences, Vol. 1, No-2 (July-Dec 2008): pp 133-
        136.
  [8]. A. Solairaju, C.Vimala,A.Sasikala Gracefulness of a spanning tree of the graph of         Cartesian product of Sm and
        Sn, The Global Journal of Pure and Applied Mathematics of Mathematical Sciences, Vol. 1, No-2 (July-Dec 2008):
        pp117-120.
  [9]. A. Solairaju, N.Abdul ali , s. Abdul saleem Gracefulness of Tp-tree with five levels obtained by java programming,
        The International Journel of Scientific and Research Publication (IJSRP),
        Volume 2,Issue 12,December 2012 Edition [ISSN 2250 – 3153]
  [10]. A. Solairaju, N.Abdul ali, Gracefulness of nc4 Merging with paths, International Organization of Scientific Research
        (IOSR),Volume 4,Issue 4, 20 December 2012.Paper ID:G22078
  [11]. A. Solairaju, N.Abdul ali, A new class of gracefull trees. International journal of science & engineering research
        (IJSER),Volume 4,1st dec 2013.paper ID : I01653
  [12]. A. Solairaju, N.Abdul ali, Gracefull ness of PK                , International Journal of Engineering Research and
                                                 th
        Technology(IJERT),Volume 1,Issue :10 dec 2012,Paper ID :P12552 [ISSN 2278 – 0181]
  [13]. Tbuan thai & hoang Q.Lan,”.Net Framework Essentials”,O`reilly,2 nd Edition 2007.
  [14]. D.Nikhil Kothari,”,.Net Framework”,Addison-Wesley Professional,2008.
  [15]. Christian Nagel et al,”Programming in C#”,Wrox Publication,2001


Issn 2250-3005(online)                                 January| 2013                                     Page 69

More Related Content

What's hot

High Dimensional Data Visualization using t-SNE
High Dimensional Data Visualization using t-SNEHigh Dimensional Data Visualization using t-SNE
High Dimensional Data Visualization using t-SNEKai-Wen Zhao
 
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...Chiheb Ben Hammouda
 
Au2419291933
Au2419291933Au2419291933
Au2419291933IJMER
 
Functional Programming In Mathematica
Functional Programming In MathematicaFunctional Programming In Mathematica
Functional Programming In MathematicaHossam Karim
 
Efficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsEfficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsNAVER Engineering
 
Minimal spanning tree class 15
Minimal spanning tree class 15Minimal spanning tree class 15
Minimal spanning tree class 15Kumar
 
Q plot tutorial
Q plot tutorialQ plot tutorial
Q plot tutorialAbhik Seal
 
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Editor IJCATR
 
Elliptic curve scalar multiplier using karatsuba
Elliptic curve scalar multiplier using karatsubaElliptic curve scalar multiplier using karatsuba
Elliptic curve scalar multiplier using karatsubaIAEME Publication
 
Visualizing Data Using t-SNE
Visualizing Data Using t-SNEVisualizing Data Using t-SNE
Visualizing Data Using t-SNEDavid Khosid
 
On the equality of the grundy numbers of a graph
On the equality of the grundy numbers of a graphOn the equality of the grundy numbers of a graph
On the equality of the grundy numbers of a graphijngnjournal
 
GATE Computer Science Solved Paper 2004
GATE Computer Science Solved Paper 2004GATE Computer Science Solved Paper 2004
GATE Computer Science Solved Paper 2004Rohit Garg
 
A linear algorithm for the grundy number of a tree
A linear algorithm for the grundy number of a treeA linear algorithm for the grundy number of a tree
A linear algorithm for the grundy number of a treeijcsit
 
16890 unit 2 heuristic search techniques
16890 unit 2 heuristic  search techniques16890 unit 2 heuristic  search techniques
16890 unit 2 heuristic search techniquesJais Balta
 
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesAn ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesComputer Science Journals
 
Dixon Deep Learning
Dixon Deep LearningDixon Deep Learning
Dixon Deep LearningSciCompIIT
 

What's hot (20)

High Dimensional Data Visualization using t-SNE
High Dimensional Data Visualization using t-SNEHigh Dimensional Data Visualization using t-SNE
High Dimensional Data Visualization using t-SNE
 
Talk iccf 19_ben_hammouda
Talk iccf 19_ben_hammoudaTalk iccf 19_ben_hammouda
Talk iccf 19_ben_hammouda
 
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...
Hierarchical Deterministic Quadrature Methods for Option Pricing under the Ro...
 
Au2419291933
Au2419291933Au2419291933
Au2419291933
 
Functional Programming In Mathematica
Functional Programming In MathematicaFunctional Programming In Mathematica
Functional Programming In Mathematica
 
Efficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsEfficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representations
 
Minimal spanning tree class 15
Minimal spanning tree class 15Minimal spanning tree class 15
Minimal spanning tree class 15
 
Q plot tutorial
Q plot tutorialQ plot tutorial
Q plot tutorial
 
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
 
Elliptic curve scalar multiplier using karatsuba
Elliptic curve scalar multiplier using karatsubaElliptic curve scalar multiplier using karatsuba
Elliptic curve scalar multiplier using karatsuba
 
Visualizing Data Using t-SNE
Visualizing Data Using t-SNEVisualizing Data Using t-SNE
Visualizing Data Using t-SNE
 
On the equality of the grundy numbers of a graph
On the equality of the grundy numbers of a graphOn the equality of the grundy numbers of a graph
On the equality of the grundy numbers of a graph
 
GATE Computer Science Solved Paper 2004
GATE Computer Science Solved Paper 2004GATE Computer Science Solved Paper 2004
GATE Computer Science Solved Paper 2004
 
A linear algorithm for the grundy number of a tree
A linear algorithm for the grundy number of a treeA linear algorithm for the grundy number of a tree
A linear algorithm for the grundy number of a tree
 
Backtraking pic&amp;def
Backtraking pic&amp;defBacktraking pic&amp;def
Backtraking pic&amp;def
 
16890 unit 2 heuristic search techniques
16890 unit 2 heuristic  search techniques16890 unit 2 heuristic  search techniques
16890 unit 2 heuristic search techniques
 
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesAn ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
 
Question bank
Question bankQuestion bank
Question bank
 
Dixon Deep Learning
Dixon Deep LearningDixon Deep Learning
Dixon Deep Learning
 
04 search heuristic
04 search heuristic04 search heuristic
04 search heuristic
 

Viewers also liked

Yakamoz Mustafam Mustafa Kemalim
Yakamoz Mustafam Mustafa KemalimYakamoz Mustafam Mustafa Kemalim
Yakamoz Mustafam Mustafa Kemalimhafize
 
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....Consumer Truth - Insights & Planning
 
911 Aerial Photos.Recently Disclassified
911 Aerial Photos.Recently Disclassified911 Aerial Photos.Recently Disclassified
911 Aerial Photos.Recently DisclassifiedTish Mum/Nan
 
Autoevalu..
Autoevalu..Autoevalu..
Autoevalu..ferbara
 
Unit 9 lesson 1 polygons
Unit 9 lesson 1 polygonsUnit 9 lesson 1 polygons
Unit 9 lesson 1 polygonsmlabuski
 
Soñamos los robots del futuro
Soñamos los robots del futuroSoñamos los robots del futuro
Soñamos los robots del futuroInma Contreras
 

Viewers also liked (8)

Yakamoz Mustafam Mustafa Kemalim
Yakamoz Mustafam Mustafa KemalimYakamoz Mustafam Mustafa Kemalim
Yakamoz Mustafam Mustafa Kemalim
 
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....
La Numeritis: el peligro de la visión puramente cuantitativa en los negocios....
 
Sintesis 14
Sintesis 14Sintesis 14
Sintesis 14
 
911 Aerial Photos.Recently Disclassified
911 Aerial Photos.Recently Disclassified911 Aerial Photos.Recently Disclassified
911 Aerial Photos.Recently Disclassified
 
Autoevalu..
Autoevalu..Autoevalu..
Autoevalu..
 
Cuadrilteros
Cuadrilteros Cuadrilteros
Cuadrilteros
 
Unit 9 lesson 1 polygons
Unit 9 lesson 1 polygonsUnit 9 lesson 1 polygons
Unit 9 lesson 1 polygons
 
Soñamos los robots del futuro
Soñamos los robots del futuroSoñamos los robots del futuro
Soñamos los robots del futuro
 

Similar to K031065069

Graph Analytics - From the Whiteboard to Your Toolbox - Sam Lerma
Graph Analytics - From the Whiteboard to Your Toolbox - Sam LermaGraph Analytics - From the Whiteboard to Your Toolbox - Sam Lerma
Graph Analytics - From the Whiteboard to Your Toolbox - Sam LermaPyData
 
Project matlab group one,dzaklo courage kwasi
Project matlab group one,dzaklo courage kwasiProject matlab group one,dzaklo courage kwasi
Project matlab group one,dzaklo courage kwasiKNUST
 
Cordial Labelings in the Context of Triplication
Cordial Labelings in the Context of  TriplicationCordial Labelings in the Context of  Triplication
Cordial Labelings in the Context of TriplicationIRJET Journal
 
Parallel Evaluation of Multi-Semi-Joins
Parallel Evaluation of Multi-Semi-JoinsParallel Evaluation of Multi-Semi-Joins
Parallel Evaluation of Multi-Semi-JoinsJonny Daenen
 
T-Coloring Certain Graphs
T-Coloring Certain GraphsT-Coloring Certain Graphs
T-Coloring Certain GraphsMangaiK4
 
Graph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answersGraph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answersAnimesh Chaturvedi
 
Edge tenacity in cycles and complete
Edge tenacity in cycles and completeEdge tenacity in cycles and complete
Edge tenacity in cycles and completeijfcstjournal
 
Ee693 sept2014midsem
Ee693 sept2014midsemEe693 sept2014midsem
Ee693 sept2014midsemGopi Saiteja
 
Answers withexplanations
Answers withexplanationsAnswers withexplanations
Answers withexplanationsGopi Saiteja
 
PERMUTATION LABELING OF JOINS OF KITE GRAPH
PERMUTATION LABELING OF JOINS OF KITE GRAPHPERMUTATION LABELING OF JOINS OF KITE GRAPH
PERMUTATION LABELING OF JOINS OF KITE GRAPHIAEME Publication
 
talk at Virginia Bioinformatics Institute, December 5, 2013
talk at Virginia Bioinformatics Institute, December 5, 2013talk at Virginia Bioinformatics Institute, December 5, 2013
talk at Virginia Bioinformatics Institute, December 5, 2013ericupnorth
 
Graph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXGraph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXBenjamin Bengfort
 
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsAlgorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsIJERA Editor
 
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsAlgorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsIJERA Editor
 
Inductive Triple Graphs: A purely functional approach to represent RDF
Inductive Triple Graphs: A purely functional approach to represent RDFInductive Triple Graphs: A purely functional approach to represent RDF
Inductive Triple Graphs: A purely functional approach to represent RDFJose Emilio Labra Gayo
 
One modulo n gracefulness of
One modulo n gracefulness ofOne modulo n gracefulness of
One modulo n gracefulness ofgraphhoc
 

Similar to K031065069 (20)

Graph Analytics - From the Whiteboard to Your Toolbox - Sam Lerma
Graph Analytics - From the Whiteboard to Your Toolbox - Sam LermaGraph Analytics - From the Whiteboard to Your Toolbox - Sam Lerma
Graph Analytics - From the Whiteboard to Your Toolbox - Sam Lerma
 
Go3112581266
Go3112581266Go3112581266
Go3112581266
 
Project matlab group one,dzaklo courage kwasi
Project matlab group one,dzaklo courage kwasiProject matlab group one,dzaklo courage kwasi
Project matlab group one,dzaklo courage kwasi
 
Cordial Labelings in the Context of Triplication
Cordial Labelings in the Context of  TriplicationCordial Labelings in the Context of  Triplication
Cordial Labelings in the Context of Triplication
 
Parallel Evaluation of Multi-Semi-Joins
Parallel Evaluation of Multi-Semi-JoinsParallel Evaluation of Multi-Semi-Joins
Parallel Evaluation of Multi-Semi-Joins
 
T-Coloring Certain Graphs
T-Coloring Certain GraphsT-Coloring Certain Graphs
T-Coloring Certain Graphs
 
Graph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answersGraph Analytics and Complexity Questions and answers
Graph Analytics and Complexity Questions and answers
 
Edge tenacity in cycles and complete
Edge tenacity in cycles and completeEdge tenacity in cycles and complete
Edge tenacity in cycles and complete
 
Ee693 sept2014midsem
Ee693 sept2014midsemEe693 sept2014midsem
Ee693 sept2014midsem
 
Answers withexplanations
Answers withexplanationsAnswers withexplanations
Answers withexplanations
 
PERMUTATION LABELING OF JOINS OF KITE GRAPH
PERMUTATION LABELING OF JOINS OF KITE GRAPHPERMUTATION LABELING OF JOINS OF KITE GRAPH
PERMUTATION LABELING OF JOINS OF KITE GRAPH
 
talk at Virginia Bioinformatics Institute, December 5, 2013
talk at Virginia Bioinformatics Institute, December 5, 2013talk at Virginia Bioinformatics Institute, December 5, 2013
talk at Virginia Bioinformatics Institute, December 5, 2013
 
Planted Clique Research Paper
Planted Clique Research PaperPlanted Clique Research Paper
Planted Clique Research Paper
 
Graph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXGraph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkX
 
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsAlgorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
 
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in GraphsAlgorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
Algorithmic Aspects of Vertex Geo-dominating Sets and Geonumber in Graphs
 
Inductive Triple Graphs: A purely functional approach to represent RDF
Inductive Triple Graphs: A purely functional approach to represent RDFInductive Triple Graphs: A purely functional approach to represent RDF
Inductive Triple Graphs: A purely functional approach to represent RDF
 
On Cubic Graceful Labeling
On Cubic Graceful LabelingOn Cubic Graceful Labeling
On Cubic Graceful Labeling
 
One modulo n gracefulness of
One modulo n gracefulness ofOne modulo n gracefulness of
One modulo n gracefulness of
 
Dijkstra
DijkstraDijkstra
Dijkstra
 

K031065069

  • 1. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1 The Gracefulness of the Merging Graph N ** C4 with Dotnet Framework Solairaju¹, N. Abdul Ali² and R.M. Karthikkeyan3 1-2 : P.G. & Research Department of Mathematics, Jamal Mohamed College, Trichy – 20. 3: M.Phil Scholar, Jamal Mohamed College, Trichy – 20. Abstract: There are many graceful graph from standers path, circuit, wheel etc .In this paper a new class of graceful graphs related to c4 [circuits with 4 vertices] is obtained . Keyword: - path limit, ‛n’ - copies of c4 I. Introduction: Most graph labeling methods trace their origin to one introduced by Rosa [2] or one given Graham and Sloane [1]. Rosa defined a function f, a -valuation of a graph with q edges if f is an injective map from the vertices of G to the set {0, 1, 2 ,…,q} such that when each edge xy is assigned the label f(x)-f(y), the resulting edge labels are distinct. A. Solairaju and K. Chitra [3] first introduced the concept of edge-odd graceful labeling of graphs, and edge-odd graceful graphs. A. Solairaju and others [5,6,7,8,9] proved the results that(1) the Gracefulness of a spanning tree of the graph of Cartesian product of P m and Cn,was obtained (2) the Gracefulness of a spanning tree of the graph of cartesian product of Sm and Sn, was obtained (3) edge-odd Gracefulness of a spanning tree of Cartesian product of P 2 and Cn was obtained (4) Even - edge Gracefulness of the Graphs was obtained (5) ladder P2 x Pn is even-edge graceful, and (6) the even-edge gracefulness of Pn n O nC5 is obtained.(8) Gracefulness of Tp-tree with five levels obtained by java programming,(9) Gracefulness of c4 Merging with paths,(10) A new class of graceful trees and (11) Gracefulness of P K , is obtained. (12, 13, 14) Used for dot net framework 3.5. Section I: Preliminaries Definition 1.1: Let G = (V,E) be a simple graph with p vertices and q edges. A map f :V(G)  {0,1,2,…,q} is called a graceful labeling if (i) f is one – to – one (ii) The edges receive all the labels (numbers) from 1 to q where the label of an edge is the absolute value of the difference between the vertex labels at its ends. A graph having a graceful labeling is called a graceful graph. Example 1.1: The graph 6 ∆ P5 is a graceful graph. Theorem: The gracefulness of the merging graph n ** c4 generalization: Issn 2250-3005(online) January| 2013 Page 65
  • 2. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1 f (T1) = 0, f (T2) = q, f (T3) = 1, f (T4) = q-2 f (v1) = q - 4 f (vn) = 3. f (vi) = Example 1.1 : Algorithm for THE GRACEFULNESS OF THE MERGING GRAPH n ** C4 in Dotnet Language using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; Issn 2250-3005(online) January| 2013 Page 66
  • 3. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1 namespace Class { public partial class Form1 : Form { public Form1() { InitializeComponent(); } int StartX = 5; int StartY = 5; int Width = 500; int Height = 500; private void btnLine_Click(object sender, EventArgs e) { // Declare edges and center point int edges =Convert.ToInt32( textBox1.Text); int center = Width / 2; int newedge = (1 + 4 * edges); label2.Text = "No of Edges :" + newedge.ToString(); // Set Graphics Tool Graphics g; g = this.CreateGraphics(); g.Clear(Color.White); SolidBrush myBrush = new SolidBrush(Color.Black); Font font = new Font("Times New Roman", 12.0f); Pen myPen = new Pen(Color.Red); myPen.Width = 2; // Draw center line and Rectangle g.DrawLine(myPen, Width, StartX, StartY, Height); g.DrawRectangle(myPen, StartX, StartY, Width, Height); //draw Inner Rectangle lines int nval = (center / edges); int sample=center; int sample1 = center; for (int i = 0; i < edges-1; i++) { sample = sample + nval; sample1 = sample1 - nval; g.DrawLine(myPen, sample, sample, StartY, Height); g.DrawLine(myPen, Width, StartX, sample, sample); g.DrawLine(myPen, sample1, sample1, StartY, Height); g.DrawLine(myPen, Width, StartX, sample1, sample1); } // Find Edges Values int q = (1+4*Convert.ToInt32(textBox1.Text)); int T1 = 0; int T2 = q; int T3 = 1; int T4 = q - 2; int P1 = 1; Issn 2250-3005(online) January| 2013 Page 67
  • 4. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1 g.DrawString(T1.ToString(), font, myBrush, Width, StartY); g.DrawString(T2.ToString(), font, myBrush, Height, Width); g.DrawString(T3.ToString(), font, myBrush, StartX, Width); g.DrawString(T4.ToString(), font, myBrush, StartX, StartY); g.DrawString(P1.ToString(), font, myBrush, center, center); g.DrawString(Convert.ToString(T4 - T1), font, myBrush, Width - center, StartY); g.DrawString(Convert.ToString(T2 - T1), font, myBrush, Height, Width - center); g.DrawString(Convert.ToString(T2 - T3), font, myBrush, Height - center, Width); g.DrawString(Convert.ToString(T4 - T3), font, myBrush, StartX, Width - center); int v1 = q - 4; int vn = 3; int incrementvalue = center / edges; int addsub = 0; int diff = 300; for (int j = 0; j < edges-1; j++) { addsub = addsub + incrementvalue; g.DrawString(vn.ToString(), font, myBrush, center+addsub, center+addsub); g.DrawString(Convert.ToString(vn - T3), font, myBrush, center +(addsub-100), center +addsub); g.DrawString(Convert.ToString(vn - T1), font, myBrush, center+addsub, center +(addsub-100)); g.DrawString(v1.ToString(), font, myBrush, StartX + addsub, StartY + addsub); g.DrawString(Convert.ToString(v1 - T3), font, myBrush, StartY +(addsub-60),StartY+addsub+10); g.DrawString(Convert.ToString(v1 - T1), font, myBrush, StartX+addsub+10, StartX+(addsub-60)); v1 = v1 - 4; vn = vn + 4; } } } } Example 1 : n is Even (n=6) : Issn 2250-3005(online) January| 2013 Page 68
  • 5. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 1 Example 2 : n is Odd (n=5) References: [1]. R. L. Graham and N. J. A. Sloane, On additive bases and harmonious graph, SIAM J. Alg. Discrete Math., 1 (1980) 382 – 404. [2]. A. Rosa, On certain valuation of the vertices of a graph, Theory of graphs (International [3]. Synposium,Rome,July 1966),Gordon and Breach, N.Y.and Dunod Paris (1967), 349-355. [4]. A.Solairaju and K.Chitra Edge-odd graceful labeling of some graphs, Electronics Notes in Discrete Mathematics Volume 33,April 2009,Pages 1. [5]. A. Solairaju and P.Muruganantham, even-edge gracefulness of ladder, The Global Journal of Applied Mathematics & Mathematical Sciences(GJ-AMMS). Vol.1.No.2, (July-December-2008):pp.149-153. [6]. A. Solairaju and P.Sarangapani, even-edge gracefulness of Pn O nC5, Preprint (Accepted for publication in Serials Publishers, New Delhi). [7]. A.Solairaju, A.Sasikala, C.Vimala Gracefulness of a spanning tree of the graph of product of Pm and Cn, The Global Journal of Pure and Applied Mathematics of Mathematical Sciences, Vol. 1, No-2 (July-Dec 2008): pp 133- 136. [8]. A. Solairaju, C.Vimala,A.Sasikala Gracefulness of a spanning tree of the graph of Cartesian product of Sm and Sn, The Global Journal of Pure and Applied Mathematics of Mathematical Sciences, Vol. 1, No-2 (July-Dec 2008): pp117-120. [9]. A. Solairaju, N.Abdul ali , s. Abdul saleem Gracefulness of Tp-tree with five levels obtained by java programming, The International Journel of Scientific and Research Publication (IJSRP), Volume 2,Issue 12,December 2012 Edition [ISSN 2250 – 3153] [10]. A. Solairaju, N.Abdul ali, Gracefulness of nc4 Merging with paths, International Organization of Scientific Research (IOSR),Volume 4,Issue 4, 20 December 2012.Paper ID:G22078 [11]. A. Solairaju, N.Abdul ali, A new class of gracefull trees. International journal of science & engineering research (IJSER),Volume 4,1st dec 2013.paper ID : I01653 [12]. A. Solairaju, N.Abdul ali, Gracefull ness of PK , International Journal of Engineering Research and th Technology(IJERT),Volume 1,Issue :10 dec 2012,Paper ID :P12552 [ISSN 2278 – 0181] [13]. Tbuan thai & hoang Q.Lan,”.Net Framework Essentials”,O`reilly,2 nd Edition 2007. [14]. D.Nikhil Kothari,”,.Net Framework”,Addison-Wesley Professional,2008. [15]. Christian Nagel et al,”Programming in C#”,Wrox Publication,2001 Issn 2250-3005(online) January| 2013 Page 69