File tree 6 files changed +68
-2
lines changed
CSChen/Algorithms/UnionFind
6 files changed +68
-2
lines changed Original file line number Diff line number Diff line change 1
- * .class
1
+ obj /
2
+ bin /
3
+
2
4
3
5
# Mobile Tools for Java (J2ME)
4
6
.mtj.tmp /
Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to find out which attributes exist for C# debugging
3
+ // Use hover for the description of the existing attributes
4
+ // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " .NET Core Launch (console)" ,
9
+ "type" : " coreclr" ,
10
+ "request" : " launch" ,
11
+ "preLaunchTask" : " build" ,
12
+ // If you have changed target frameworks, make sure to update the program path.
13
+ "program" : " ${workspaceRoot}/bin/Debug/netcoreapp1.1/cs-algorithms.dll" ,
14
+ "args" : [],
15
+ "cwd" : " ${workspaceRoot}" ,
16
+ // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17
+ "console" : " internalConsole" ,
18
+ "stopAtEntry" : false ,
19
+ "internalConsoleOptions" : " openOnSessionStart"
20
+ },
21
+ {
22
+ "name" : " .NET Core Attach" ,
23
+ "type" : " coreclr" ,
24
+ "request" : " attach" ,
25
+ "processId" : " ${command:pickProcess}"
26
+ }
27
+ ]
28
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.1.0" ,
3
+ "command" : " dotnet" ,
4
+ "isShellCommand" : true ,
5
+ "args" : [],
6
+ "tasks" : [
7
+ {
8
+ "taskName" : " build" ,
9
+ "args" : [
10
+ " ${workspaceRoot}/cs-algorithms.csproj"
11
+ ],
12
+ "isBuildCommand" : true ,
13
+ "problemMatcher" : " $msCompile"
14
+ }
15
+ ]
16
+ }
Original file line number Diff line number Diff line change 3
3
using System . Linq ;
4
4
using System . Text ;
5
5
6
- namespace SimuKit . Algorithms . UnionFind
6
+ namespace CSChen . Algorithms . UnionFind
7
7
{
8
8
public class QuickUnion : IUnionFind
9
9
{
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ namespace cs_algorithms
4
+ {
5
+ class Program
6
+ {
7
+ static void Main ( string [ ] args )
8
+ {
9
+ Console . WriteLine ( "Hello World!" ) ;
10
+ }
11
+ }
12
+ }
Original file line number Diff line number Diff line change
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <PropertyGroup >
4
+ <OutputType >Exe</OutputType >
5
+ <TargetFramework >netcoreapp1.1</TargetFramework >
6
+ </PropertyGroup >
7
+
8
+ </Project >
You can’t perform that action at this time.
0 commit comments