MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

Arrays/17_nsertion_and_Deletion.cpp:77–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 return x;
76}
77int main ()
78{
79 Array arr(10);
80 arr.Insert(0,5);
81 arr.Insert(1,25);
82 arr.Insert(2,56);
83 arr.Insert(3,99);
84 cout<<arr.Delete(0)<<endl;
85 arr.Display();
86 return 0;
87}
88
89
90

Callers

nothing calls this directly

Calls 3

InsertMethod · 0.80
DeleteMethod · 0.80
DisplayMethod · 0.80

Tested by

no test coverage detected