Skip to content

Instantly share code, notes, and snippets.

View SajjadArifGul's full-sized avatar
👨‍💻

Sajjad Gul SajjadArifGul

👨‍💻
View GitHub Profile
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;
using Microsoft.Win32; //<-- here is it
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;
using Cources;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cources
{
public class BSE
{
public string[] FstSemCources()
using System;
namespace Binary
{// binary search using recursion
class binary
{
public int searching(int[] array,int first, int last,int value)
{
int middle = (first+last)/2;
if (array[middle] == value)
{
using System;
namespace adjency_list
{
class Program
{
Graph g = new Graph();
public Program()
{
A: Console.WriteLine("What u want?\n1. Insert\n2. Display");
using System;
namespace directed_adjency_list
{
class Program
{
matrix m = new matrix();
public Program()
{
A: Console.WriteLine("What do you want ?\n1. Add Relation?\n2. Display");
using System;
namespace weighted_adjency_matrix
{
class Program
{
matrix m = new matrix();
public Program()
{
A: Console.WriteLine("What do you want ?\n1. Add Relation?\n2. Display");
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tree_List
{
class Program
{
Binary_Tree bt = new Binary_Tree();
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tree_array
{
class Program
{
Binary_Tree bt = new Binary_Tree();
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Quick_Sort
{
class NODE
{
private NODE PRef;