One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| package com.sanaebadi.foursquare.presentaion.util | |
| import android.content.Context | |
| import android.content.Context.CONNECTIVITY_SERVICE | |
| import android.content.Intent | |
| import android.content.pm.PackageManager | |
| import android.net.ConnectivityManager | |
| import android.net.Uri | |
| import android.os.Build | |
| import android.provider.Settings |
| String.prototype.replaceAll = function(search, replacement) { | |
| var target = this; | |
| return target.replace(new RegExp(search, 'g'), replacement); | |
| }; | |
| String.prototype.toPersianCharacter = function () { | |
| var string = this; | |
| var obj = { | |
| 'ك' :'ک', | |
| 'دِ': 'د', |
| import java.util.ArrayList; | |
| import java.util.LinkedList; | |
| import java.util.Queue; | |
| import java.util.Stack; | |
| public class Graph | |
| { | |
| public Node rootNode; | |
| public ArrayList nodes=new ArrayList(); |