Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
E

ektoras

@ektoras
About
Posts
32
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    It is a Data Structure work J4amieC. Anyway thank you.

    C# algorithms question

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    on a Command Line.

    C# algorithms question

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    My English is not good. But I mean something like that: int count(POINTER head) { return head!=NULL ? count(head->next)+1 : 0 ; } But not to return the value. I WANT TO DISPLAY THE VALUE.(and this is difficult)

    C# algorithms question

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    It is absolutely sure that I can not do that, although I have tried very much. Any idea?

    C# algorithms question

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    This is not a C# question but an algorithm question for my homework at university.

    C# algorithms question

  • Recursive function to return the max key of nodes of a singly connected list?
    E ektoras

    Could someone give me an algorithm of a recursive function to return the max key of nodes of a singly connected list?

    C# algorithms question

  • Recursive function to display the number of nodes of a singly connected list?
    E ektoras

    Could someone give me an algorithm of a recursive function to display-NOT TO RETURN-the number of nodes of a singly connected list?

    C# algorithms question

  • faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red;
    E ektoras

    It is too slow for large richTextBoxes. Maybe using pointers or something else?

    C# question

  • Is there something faster than .|[\r\n] in RegExp ?
    E ektoras

    It doesn't work.

    C# question

  • faster than: richTextBox1.Select(78,65);richTextBox1.SelectionColor= Color.Red;
    E ektoras

    Is there a faster way to give a specific color in a richTextBox? void makeThisRed(int start, int length) { richTextBox1.Select(start,length); richTextBox1.SelectionColor= Color.Red; }

    C# question

  • Is there something faster than .|[\r\n] in RegExp ?
    E ektoras

    I want to match multiple-line comments from /* to */ so I use: Regex regex = new Regex("/\\*(**.|[\r\n]**)*?\\*/");

    C# question

  • Is there something faster than .|[\r\n] in RegExp ?
    E ektoras

    Is there something faster than .|[\r\n] in Regular Expressions ?

    C# question

  • Regex question
    E ektoras

    In general when I know exactly the keywords(about 300) I want to find should I use something like: 1)Regex(@"if|do|for|while|int|Int32|Int64...(about 300)") or 2)Regex(@"[_A-Za-z]+[A-Za-z]\w*] and follows searching in a hashtable?

    C# question algorithms regex lounge

  • Regex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ?
    E ektoras

    It finds all the words which start with _ or letter and contains only _ letters numbers.

    C# regex question

  • Regex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ?
    E ektoras

    Thanks Leppie.

    C# regex question

  • Regex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ?
    E ektoras

    I want to make it smaller and faster.

    C# regex question

  • Regex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ?
    E ektoras

    Regex(@"[_A-Za-z]+[A-Za-z]\w*") Can it be improved ?

    C# regex question

  • Like foreach but from end to begining ?
    E ektoras

    Thank you Dominic Farr .

    C# tutorial question

  • Like foreach but from end to begining ?
    E ektoras

    for( ; ; ) by itself is very fast. But to access elements in an array using indexes is slow.

    C# tutorial question

  • Like foreach but from end to begining ?
    E ektoras

    I think this is very slow for a long string. I was thinking something like: string st = "a very long string" ; System.Text.StringBuilder sb = new System.Text.StringBuilder(st); System.Text.StringBuilder sb2 = new System.Text.StringBuilder(""); foreach(char ch in sb.ToString()) sb2.Insert(0,ch); foreach(char ch in sb2.ToString()) { ///////// } but I'm looking for something more faster.

    C# tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups