Skip to content

Instantly share code, notes, and snippets.

View alper123-prog's full-sized avatar

alper123-prog

View GitHub Profile
class TrieNode
{
public TrieNode[] Harfler = new TrieNode[26]; // a-z harfleri için 26 yer
public bool KelimeSonuMu = false;
}
class MetinAgaci
{
private TrieNode kok = new TrieNode();
using System;
class Program
{
static void Main()
{
int[] dizi = { 130, 500, 2, 11, 7, 10 };
for (int i = 0; i < dizi.Length - 1; i++)
using System;
using System.Diagnostics;
class Program
{
static void InsertionSort(int[] dizi)
{
int i, j, secilen;
for (i = 1; i < dizi.Length; i++)
{